]> www.infradead.org Git - users/willy/linux.git/commitdiff
media: i2c: imx219: Fix a bug in imx219_enum_frame_size
authorDafna Hirschfeld <dafna.hirschfeld@collabora.com>
Tue, 31 Mar 2020 18:06:30 +0000 (20:06 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Mon, 18 May 2020 09:11:44 +0000 (11:11 +0200)
When enumerating the frame sizes, the value sent to
imx219_get_format_code should be fse->code
(the code from the ioctl) and not imx219->fmt.code
which is the code set currently in the driver.

Fixes: 22da1d56e982 ("media: i2c: imx219: Add support for RAW8 bit bayer format")
Signed-off-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
Reviewed-by: Helen Koike <helen.koike@collabora.com>
Reviewed-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/i2c/imx219.c

index 8ff2a610cdc76e659afb7ebd69d72fe48eb200f8..e63288ddd721543bd109a15b5af986271e81d0ff 100644 (file)
@@ -824,7 +824,7 @@ static int imx219_enum_frame_size(struct v4l2_subdev *sd,
        if (fse->index >= ARRAY_SIZE(supported_modes))
                return -EINVAL;
 
-       if (fse->code != imx219_get_format_code(imx219, imx219->fmt.code))
+       if (fse->code != imx219_get_format_code(imx219, fse->code))
                return -EINVAL;
 
        fse->min_width = supported_modes[fse->index].width;