diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2020-11-19 17:19:31 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-01-12 16:05:15 +0100 |
commit | 7a4826309722ad86679a61e9a3bde80c1ef3c8d5 (patch) | |
tree | ce4e29a101f186d146cd60f46af3ce1ebde0703a /drivers/media/i2c/ov5647.c | |
parent | media: ov5647: Add set_fmt and get_fmt calls. (diff) | |
download | linux-7a4826309722ad86679a61e9a3bde80c1ef3c8d5.tar.xz linux-7a4826309722ad86679a61e9a3bde80c1ef3c8d5.zip |
media: ov5647: Fix format initialization
The driver currently support a single format. Fix its initialization to
use the only supported resolution.
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/i2c/ov5647.c')
-rw-r--r-- | drivers/media/i2c/ov5647.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/media/i2c/ov5647.c b/drivers/media/i2c/ov5647.c index 9093a1ca7bce..04551ed683df 100644 --- a/drivers/media/i2c/ov5647.c +++ b/drivers/media/i2c/ov5647.c @@ -560,9 +560,8 @@ static int ov5647_open(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh) crop->height = OV5647_WINDOW_HEIGHT_DEF; format->code = MEDIA_BUS_FMT_SBGGR8_1X8; - - format->width = OV5647_WINDOW_WIDTH_DEF; - format->height = OV5647_WINDOW_HEIGHT_DEF; + format->width = 640; + format->height = 480; format->field = V4L2_FIELD_NONE; format->colorspace = V4L2_COLORSPACE_SRGB; |