mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 664477eca7ff29b0f4665eb7e2aebaf45b7f6ec4 Mon Sep 17 00:00:00 2001
|
|
From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
Date: Mon, 2 Oct 2023 14:38:07 +0300
|
|
Subject: [PATCH 0651/1002] media: rp1: cfe: Fix default meta format's field
|
|
|
|
Set default meta format's field to V4L2_FIELD_NONE, instead of zeroing
|
|
it which indicates V4L2_FIELD_ANY. Metadata doesn't have fields, so NONE
|
|
makes sense, and furthermore the default v4l2 link validation will check
|
|
for matching fields, or that the sink field is NONE.
|
|
|
|
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
---
|
|
drivers/media/platform/raspberrypi/rp1_cfe/cfe.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c b/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
index 97016fa18d3e..8478b879d47c 100644
|
|
--- a/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
+++ b/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
@@ -110,6 +110,7 @@ const struct v4l2_mbus_framefmt cfe_default_meta_format = {
|
|
.width = 8192,
|
|
.height = 1,
|
|
.code = MEDIA_BUS_FMT_SENSOR_DATA,
|
|
+ .field = V4L2_FIELD_NONE,
|
|
};
|
|
|
|
enum node_ids {
|
|
--
|
|
2.44.0
|
|
|