aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video
diff options
context:
space:
mode:
authorMichael Jones <michael.jones@matrix-vision.de>2012-07-26 09:48:25 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-08-11 15:55:53 -0400
commit9d380adf021c4f73fc59b0d00e0b7f952965b380 (patch)
tree8aacda7682ec2d1ae12f0ab63dc083bd7b43ee85 /drivers/media/video
parentfdeae29005aae41837e70c395c8290a8297ca677 (diff)
[media] v4l2: typos
[mchehab@redhat.com: fix a merge conflict at Documentation/video4linux/v4l2-framework.txt] Signed-off-by: Michael Jones <michael.jones@matrix-vision.de> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video')
-rw-r--r--drivers/media/video/omap3isp/ispqueue.c2
-rw-r--r--drivers/media/video/omap3isp/ispresizer.c6
-rw-r--r--drivers/media/video/v4l2-common.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/video/omap3isp/ispqueue.c b/drivers/media/video/omap3isp/ispqueue.c
index e912f0cbd6ef..15bf3eab2224 100644
--- a/drivers/media/video/omap3isp/ispqueue.c
+++ b/drivers/media/video/omap3isp/ispqueue.c
@@ -647,7 +647,7 @@ static int isp_video_queue_alloc(struct isp_video_queue *queue,
647 if (ret < 0) 647 if (ret < 0)
648 return ret; 648 return ret;
649 649
650 /* Bail out of no buffers should be allocated. */ 650 /* Bail out if no buffers should be allocated. */
651 if (nbuffers == 0) 651 if (nbuffers == 0)
652 return 0; 652 return 0;
653 653
diff --git a/drivers/media/video/omap3isp/ispresizer.c b/drivers/media/video/omap3isp/ispresizer.c
index a9bfd0afb515..d11fb261d530 100644
--- a/drivers/media/video/omap3isp/ispresizer.c
+++ b/drivers/media/video/omap3isp/ispresizer.c
@@ -690,7 +690,7 @@ static void resizer_print_status(struct isp_res_device *res)
690} 690}
691 691
692/* 692/*
693 * resizer_calc_ratios - Helper function for calculate resizer ratios 693 * resizer_calc_ratios - Helper function for calculating resizer ratios
694 * @res: pointer to resizer private data structure 694 * @res: pointer to resizer private data structure
695 * @input: input frame size 695 * @input: input frame size
696 * @output: output frame size 696 * @output: output frame size
@@ -734,7 +734,7 @@ static void resizer_print_status(struct isp_res_device *res)
734 * value will still satisfy the original inequality, as b will disappear when 734 * value will still satisfy the original inequality, as b will disappear when
735 * the expression will be shifted right by 8. 735 * the expression will be shifted right by 8.
736 * 736 *
737 * The reverted the equations thus become 737 * The reverted equations thus become
738 * 738 *
739 * - 8-phase, 4-tap mode 739 * - 8-phase, 4-tap mode
740 * hrsz = ((iw - 7) * 256 + 255 - 16 - 32 * sph) / (ow - 1) 740 * hrsz = ((iw - 7) * 256 + 255 - 16 - 32 * sph) / (ow - 1)
@@ -759,7 +759,7 @@ static void resizer_print_status(struct isp_res_device *res)
759 * loop', the smallest of the ratio values will be used, never exceeding the 759 * loop', the smallest of the ratio values will be used, never exceeding the
760 * requested input size. 760 * requested input size.
761 * 761 *
762 * We first clamp the output size according to the hardware capabilitie to avoid 762 * We first clamp the output size according to the hardware capability to avoid
763 * auto-cropping the input more than required to satisfy the TRM equations. The 763 * auto-cropping the input more than required to satisfy the TRM equations. The
764 * minimum output size is achieved with a scaling factor of 1024. It is thus 764 * minimum output size is achieved with a scaling factor of 1024. It is thus
765 * computed using the 7-tap equations. 765 * computed using the 7-tap equations.
diff --git a/drivers/media/video/v4l2-common.c b/drivers/media/video/v4l2-common.c
index 1baec8393306..105f88cdb9d6 100644
--- a/drivers/media/video/v4l2-common.c
+++ b/drivers/media/video/v4l2-common.c
@@ -418,7 +418,7 @@ EXPORT_SYMBOL_GPL(v4l2_i2c_tuner_addrs);
418 418
419#if defined(CONFIG_SPI) 419#if defined(CONFIG_SPI)
420 420
421/* Load a spi sub-device. */ 421/* Load an spi sub-device. */
422 422
423void v4l2_spi_subdev_init(struct v4l2_subdev *sd, struct spi_device *spi, 423void v4l2_spi_subdev_init(struct v4l2_subdev *sd, struct spi_device *spi,
424 const struct v4l2_subdev_ops *ops) 424 const struct v4l2_subdev_ops *ops)