aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/gspca/ov534.c
diff options
context:
space:
mode:
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 */