mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
32 lines
1.3 KiB
Diff
32 lines
1.3 KiB
Diff
From 06ca36bbedeb5f75867bea2a2fdfe9a88b44e35f Mon Sep 17 00:00:00 2001
|
|
From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
Date: Fri, 29 Sep 2023 13:29:15 +0300
|
|
Subject: [PATCH 0650/1002] media: rp1: fe: Fix default mbus code
|
|
|
|
When pisp_fe_pad_set_fmt() is given an mbus code that CFE does not
|
|
support, it currently defaults to MEDIA_BUS_FMT_SBGGR10_1X10. This is
|
|
not correct, as FE does not support SBGGR10.
|
|
|
|
Set the default to MEDIA_BUS_FMT_SRGGB16_1X16 instead.
|
|
|
|
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
---
|
|
drivers/media/platform/raspberrypi/rp1_cfe/pisp_fe.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/media/platform/raspberrypi/rp1_cfe/pisp_fe.c b/drivers/media/platform/raspberrypi/rp1_cfe/pisp_fe.c
|
|
index 65486caca977..31fb86067adf 100644
|
|
--- a/drivers/media/platform/raspberrypi/rp1_cfe/pisp_fe.c
|
|
+++ b/drivers/media/platform/raspberrypi/rp1_cfe/pisp_fe.c
|
|
@@ -437,7 +437,7 @@ static int pisp_fe_pad_set_fmt(struct v4l2_subdev *sd,
|
|
case FE_OUTPUT1_PAD:
|
|
cfe_fmt = find_format_by_code(format->format.code);
|
|
if (!cfe_fmt || !(cfe_fmt->flags & CFE_FORMAT_FLAG_FE_OUT))
|
|
- cfe_fmt = find_format_by_code(MEDIA_BUS_FMT_SBGGR10_1X10);
|
|
+ cfe_fmt = find_format_by_code(MEDIA_BUS_FMT_SRGGB16_1X16);
|
|
|
|
format->format.code = cfe_fmt->code;
|
|
|
|
--
|
|
2.44.0
|
|
|