diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/ov511.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ov511.c b/drivers/media/video/ov511.c index 2576ded2b9c5..c6852402c5e9 100644 --- a/drivers/media/video/ov511.c +++ b/drivers/media/video/ov511.c | |||
@@ -5653,7 +5653,7 @@ static ssize_t show_exposure(struct device *cd, | |||
5653 | if (!ov->dev) | 5653 | if (!ov->dev) |
5654 | return -ENODEV; | 5654 | return -ENODEV; |
5655 | sensor_get_exposure(ov, &exp); | 5655 | sensor_get_exposure(ov, &exp); |
5656 | return sprintf(buf, "%d\n", exp >> 8); | 5656 | return sprintf(buf, "%d\n", exp); |
5657 | } | 5657 | } |
5658 | static DEVICE_ATTR(exposure, S_IRUGO, show_exposure, NULL); | 5658 | static DEVICE_ATTR(exposure, S_IRUGO, show_exposure, NULL); |
5659 | 5659 | ||