From 55dfae8c2c0b54b2246bfe39ca539b4f0aaad5e3 Mon Sep 17 00:00:00 2001 From: yuquanjun Date: Tue, 14 Apr 2026 19:17:16 +0800 Subject: [PATCH] Fix: Correct Bayer pattern declaration from GRBG to BGGR (SBGGR10_1X10) per CFA statistical analysis. Hardware outputs BGGR not GRBG. Eliminates green color cast in demosaiced output. --- sc235hai.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc235hai.c b/sc235hai.c index 8db6ccd..a5af073 100644 --- a/sc235hai.c +++ b/sc235hai.c @@ -347,7 +347,7 @@ static int sc235hai_stop_streaming(struct sc235hai *sc235hai) SC235HAI_MODE_STANDBY); } -/* Supported media bus formats — SC235HAI outputs RAW10 Bayer BGGR */ +/* Supported media bus formats — SC231AI outputs RAW10 Bayer BGGR per CFA analysis */ static const u32 sc235hai_mbus_fmts[] = { MEDIA_BUS_FMT_SBGGR10_1X10, };