summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.patches2
-rw-r--r--linux/drivers/media/video/videobuf-vmalloc.c2
-rw-r--r--linux/include/media/v4l2-dev.h4
-rwxr-xr-xv4l2-apps/util/v4l_rec.pl4
4 files changed, 6 insertions, 6 deletions
diff --git a/README.patches b/README.patches
index 882482223..6551964fd 100644
--- a/README.patches
+++ b/README.patches
@@ -166,7 +166,7 @@ c) Since June, 1st, 2007, all patches are requested to have their coding style
the script, between the kernel one and a copy at v4l-dvb development tree.
It is always a good idea to use in-kernel version, since additional tests
- are performed (like checking for the usage of depreciated API's that are
+ are performed (like checking for the usage of deprecated API's that are
about to be removed).
It is possible to override the in-kernel checkpatch.pl location, by using
diff --git a/linux/drivers/media/video/videobuf-vmalloc.c b/linux/drivers/media/video/videobuf-vmalloc.c
index eb25cc257..e9cf83572 100644
--- a/linux/drivers/media/video/videobuf-vmalloc.c
+++ b/linux/drivers/media/video/videobuf-vmalloc.c
@@ -204,7 +204,7 @@ static int __videobuf_iolock (struct videobuf_queue* q,
return 0;
/* FIXME: to properly support USERPTR, remap should occur.
- The code bellow won't work, since mem->vma = NULL
+ The code below won't work, since mem->vma = NULL
*/
/* Try to remap memory */
rc = remap_vmalloc_range(mem->vma, (void *)vb->baddr, 0);
diff --git a/linux/include/media/v4l2-dev.h b/linux/include/media/v4l2-dev.h
index ee7f48923..4e1511b0b 100644
--- a/linux/include/media/v4l2-dev.h
+++ b/linux/include/media/v4l2-dev.h
@@ -59,7 +59,7 @@ struct video_device
char name[32];
int vfl_type;
int minor;
- /* attribute to diferentiate multiple indexs on one physical device */
+ /* attribute to differentiate multiple indices on one physical device */
int index;
int debug; /* Activates debug level*/
@@ -82,7 +82,7 @@ struct video_device
void *priv;
#endif
- /* for videodev.c intenal usage -- please don't touch */
+ /* for videodev.c internal usage -- please don't touch */
int users; /* video_exclusive_{open|close} ... */
struct mutex lock; /* ... helper function uses these */
};
diff --git a/v4l2-apps/util/v4l_rec.pl b/v4l2-apps/util/v4l_rec.pl
index b533af097..941c03634 100755
--- a/v4l2-apps/util/v4l_rec.pl
+++ b/v4l2-apps/util/v4l_rec.pl
@@ -16,7 +16,7 @@ $std=shift or $std='PAL-M';
$dev=shift or $dev="/dev/video1";
##############################################
-# Those stuff bellow are currently "hardcoded"
+# Those stuff below are currently "hardcoded"
my $acard=0;
my $rec_ctrl="Aux,0";
@@ -25,7 +25,7 @@ my $vbitrate=1500;
my $abitrate=224;
##############################################
-# Those stuff bellow are NTSC / PAL-M specific
+# Those stuff below are NTSC / PAL-M specific
my $list="/usr/share/xawtv/ntsc-cable.list";
my $fps=30000/1001;