media: i2c: imx319: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips
authorDave Stevenson <dave.stevenson@raspberrypi.com>
Mon, 5 Dec 2022 15:21:47 +0000 (15:21 +0000)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Tue, 6 Dec 2022 07:23:37 +0000 (07:23 +0000)
The driver changes the Bayer order based on the flips, but
does not define the control correctly with the
V4L2_CTRL_FLAG_MODIFY_LAYOUT flag.

Add the V4L2_CTRL_FLAG_MODIFY_LAYOUT flag.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/i2c/imx319.c

index 245a18fb40ad0d0e7321c170cd3bb67f76c95854..45b1b61b2880d94c23254186b4f111982e7759e3 100644 (file)
@@ -2328,8 +2328,12 @@ static int imx319_init_controls(struct imx319 *imx319)
 
        imx319->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
                                          V4L2_CID_HFLIP, 0, 1, 1, 0);
+       if (imx319->hflip)
+               imx319->hflip->flags |= V4L2_CTRL_FLAG_MODIFY_LAYOUT;
        imx319->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
                                          V4L2_CID_VFLIP, 0, 1, 1, 0);
+       if (imx319->vflip)
+               imx319->vflip->flags |= V4L2_CTRL_FLAG_MODIFY_LAYOUT;
 
        v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
                          IMX319_ANA_GAIN_MIN, IMX319_ANA_GAIN_MAX,