diff options
author | Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> | 2018-05-16 19:04:33 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-05-28 13:46:48 -0400 |
commit | 7be8c4f7da9722ff7bf878cd75fa8bf54f1e821a (patch) | |
tree | ba04cbdf2a97a5e968bd568aa7bbf58613ad158d | |
parent | 769afd212b160df7b041e9fa8f97ca498ef94d55 (diff) | |
download | linux-7be8c4f7da9722ff7bf878cd75fa8bf54f1e821a.tar.bz2 |
media: rcar-csi2: set default format if a unsupported one is requested
Instead of failing the set_fmt() if a unsupported format is requested
set a default one and return the changed format to the user.
Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Reported-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
-rw-r--r-- | drivers/media/platform/rcar-vin/rcar-csi2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/rcar-vin/rcar-csi2.c b/drivers/media/platform/rcar-vin/rcar-csi2.c index e64f07fe184e..daef72d410a3 100644 --- a/drivers/media/platform/rcar-vin/rcar-csi2.c +++ b/drivers/media/platform/rcar-vin/rcar-csi2.c @@ -613,7 +613,7 @@ static int rcsi2_set_pad_format(struct v4l2_subdev *sd, struct v4l2_mbus_framefmt *framefmt; if (!rcsi2_code_to_fmt(format->format.code)) - return -EINVAL; + format->format.code = rcar_csi2_formats[0].code; if (format->which == V4L2_SUBDEV_FORMAT_ACTIVE) { priv->mf = format->format; |