[PATCH v2] media: ov5640: fix get_light_freq on auto

From: Michal Simek
Date: Fri Nov 22 2024 - 03:28:29 EST


From: Sam Bobrowicz <sam@xxxxxxxxxxxxxxxxxx>

Light frequency was not properly returned when in auto
mode and the detected frequency was 60Hz.

Fixes: 19a81c1426c1 ("[media] add Omnivision OV5640 sensor driver")
Signed-off-by: Sam Bobrowicz <sam@xxxxxxxxxxxxxxxxxx>
Signed-off-by: Michal Simek <michal.simek@xxxxxxx>
Cc: <stable@xxxxxxxxxx>
---

Changes in v2:
- add Fixes tag and cc stable

drivers/media/i2c/ov5640.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
index c1d3fce4a7d3..8566bc2edde9 100644
--- a/drivers/media/i2c/ov5640.c
+++ b/drivers/media/i2c/ov5640.c
@@ -1982,6 +1982,7 @@ static int ov5640_get_light_freq(struct ov5640_dev *sensor)
light_freq = 50;
} else {
/* 60Hz */
+ light_freq = 60;
}
}

--
2.43.0