1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-13 11:51:54 +00:00
openmptcprouter/root/target/linux/bcm27xx/patches-5.15/0364-media-i2c-imx477-Fix-crop-height-for-2028x1080-mode.patch
2021-11-24 18:32:01 +01:00

30 lines
921 B
Diff

From c63af37bafdb4adbea2ccb0ec7a30e57c911fd8f Mon Sep 17 00:00:00 2001
From: Naushir Patuck <naush@raspberrypi.com>
Date: Thu, 18 Feb 2021 15:05:57 +0000
Subject: [PATCH 364/634] 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.1