diff options
author | Bingbu Cao <[email protected]> | 2020-09-25 03:59:20 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2020-11-16 10:31:12 +0100 |
commit | 1d7b18a9ee5513fe45175ccb8a29ae08ad110fb2 (patch) | |
tree | 22260312e8fa4826d7b665f13cf64fd80baacd3f | |
parent | 1c891423d7059f65f45beff408923fe0b34d85e5 (diff) |
media: ov2740: change the minimal exposure value to 4
The minimal valid exposure value should be 4 lines instead of 8 for
ov2740 mannual exposure control.
Signed-off-by: Bingbu Cao <[email protected]>
Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>
-rw-r--r-- | drivers/media/i2c/ov2740.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/ov2740.c b/drivers/media/i2c/ov2740.c index 0d32b0c0ca11..64ecb6917dd3 100644 --- a/drivers/media/i2c/ov2740.c +++ b/drivers/media/i2c/ov2740.c @@ -37,7 +37,7 @@ /* Exposure controls from sensor */ #define OV2740_REG_EXPOSURE 0x3500 -#define OV2740_EXPOSURE_MIN 8 +#define OV2740_EXPOSURE_MIN 4 #define OV2740_EXPOSURE_MAX_MARGIN 8 #define OV2740_EXPOSURE_STEP 1 |