If a pixel format is not supported by the hardware NULL is returned by
rvin_format_from_pixel() for that fourcc. Verify that the pixel format
is supported using this or skip it when enumerating.

Signed-off-by: Niklas Söderlund <niklas.soderlund+rene...@ragnatech.se>
---
 drivers/media/platform/rcar-vin/rcar-v4l2.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/drivers/media/platform/rcar-vin/rcar-v4l2.c 
b/drivers/media/platform/rcar-vin/rcar-v4l2.c
index cbc1c07f0a9631a4..ba08f6c49956e899 100644
--- a/drivers/media/platform/rcar-vin/rcar-v4l2.c
+++ b/drivers/media/platform/rcar-vin/rcar-v4l2.c
@@ -302,10 +302,20 @@ static int rvin_g_fmt_vid_cap(struct file *file, void 
*priv,
 static int rvin_enum_fmt_vid_cap(struct file *file, void *priv,
                                 struct v4l2_fmtdesc *f)
 {
+       struct rvin_dev *vin = video_drvdata(file);
+       unsigned int i, skip = 0;
+
        if (f->index >= ARRAY_SIZE(rvin_formats))
                return -EINVAL;
 
-       f->pixelformat = rvin_formats[f->index].fourcc;
+       for (i = 0; i <= f->index; i++)
+               if (!rvin_format_from_pixel(vin, rvin_formats[i].fourcc))
+                       skip++;
+
+       if (f->index + skip >= ARRAY_SIZE(rvin_formats))
+               return -EINVAL;
+
+       f->pixelformat = rvin_formats[f->index + skip].fourcc;
 
        return 0;
 }
-- 
2.23.0

Reply via email to