aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/gspca/ov534.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-03-10 23:58:12 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-17 23:47:01 -0400
commit000f64efc7fe6693261a78a0164c0e805553631b (patch)
tree002cf81ecb243bfe35a24f89a053ba51b2f02bf9 /drivers/media/video/gspca/ov534.c
parent6721b51ece65967fe628007fee3e16479c07afd1 (diff)
V4L/DVB: Fix bad whitespacing
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/gspca/ov534.c')
-rw-r--r--drivers/media/video/gspca/ov534.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/gspca/ov534.c b/drivers/media/video/gspca/ov534.c
index 8cd193d18b74..dc1e4efe30fb 100644
--- a/drivers/media/video/gspca/ov534.c
+++ b/drivers/media/video/gspca/ov534.c
@@ -709,7 +709,7 @@ static void setexposure(struct gspca_dev *gspca_dev)
709 709
710 /* 'val' is one byte and represents half of the exposure value we are 710 /* 'val' is one byte and represents half of the exposure value we are
711 * going to set into registers, a two bytes value: 711 * going to set into registers, a two bytes value:
712 * 712 *
713 * MSB: ((u16) val << 1) >> 8 == val >> 7 713 * MSB: ((u16) val << 1) >> 8 == val >> 7
714 * LSB: ((u16) val << 1) & 0xff == val << 1 714 * LSB: ((u16) val << 1) & 0xff == val << 1
715 */ 715 */