mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
media: i2c: ov9282: restore flash duration calculation
The migration to CCI helpers made V4L2_CID_FLASH_DURATION write the
requested duration directly to OV9282_REG_STROBE_FRAME_SPAN, dropping
the conversion from microseconds to the register value.
This made flash strobes too long and produced overly bright frames.
Restore the missing calculation so flash duration is programmed
correctly again.
Fixes: 273f52f3cb ("media: i2c: ov9282: Convert to CCI register access helpers")
Cc: Xiaolei Wang <xiaolei.wang@windriver.com>
Cc: stable@vger.kernel.org
Signed-off-by: Richard Leitner <richard.leitner@linux.dev>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
This commit is contained in:
parent
11ccf31a65
commit
d836f57e8a
|
|
@ -647,7 +647,8 @@ static int ov9282_set_ctrl(struct v4l2_ctrl *ctrl)
|
|||
ctrl->val ? OV9282_OUTPUT_ENABLE6_STROBE : 0, NULL);
|
||||
break;
|
||||
case V4L2_CID_FLASH_DURATION:
|
||||
ret = cci_write(ov9282->regmap, OV9282_REG_STROBE_FRAME_SPAN, ctrl->val, NULL);
|
||||
ret = cci_write(ov9282->regmap, OV9282_REG_STROBE_FRAME_SPAN,
|
||||
ov9282_us_to_flash_duration(ov9282, ctrl->val), NULL);
|
||||
break;
|
||||
default:
|
||||
dev_err(ov9282->dev, "Invalid control %d", ctrl->id);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user