1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-15 04:42:02 +00:00
openmptcprouter/root/target/linux/bcm27xx/patches-5.14/0346-media-i2c-imx477-Fix-crop-height-for-2028x1080-mode.patch
Ycarus (Yannick Chabanois) 5c593832cc Add 5.14 patches for RPI
2021-10-01 16:58:58 +02:00

30 lines
921 B
Diff

From 1e3b01a13ee011ffecae65898516e81556ba2455 Mon Sep 17 00:00:00 2001
From: Naushir Patuck <naush@raspberrypi.com>
Date: Thu, 18 Feb 2021 15:05:57 +0000
Subject: [PATCH 346/552] media: i2c: imx477: Fix crop height for 2028x1080
mode
The crop height for this mode was set at 2600 lines, it should be 2160
lines instead.
Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
---
drivers/media/i2c/imx477.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/i2c/imx477.c b/drivers/media/i2c/imx477.c
index 7907d5142d17..27ee391eee49 100644
--- a/drivers/media/i2c/imx477.c
+++ b/drivers/media/i2c/imx477.c
@@ -955,7 +955,7 @@ static const struct imx477_mode supported_modes_12bit[] = {
.left = IMX477_PIXEL_ARRAY_LEFT,
.top = IMX477_PIXEL_ARRAY_TOP + 440,
.width = 4056,
- .height = 2600,
+ .height = 2160,
},
.timeperframe_min = {
.numerator = 100,
--
2.33.0