[media] ov9740: avoid calling ov9740_res_roundup() twice
Simplify ov9740_s_fmt. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Reported-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
137526904b
commit
34b92def75
@ -673,20 +673,8 @@ static int ov9740_s_fmt(struct v4l2_subdev *sd,
|
|||||||
{
|
{
|
||||||
struct i2c_client *client = v4l2_get_subdevdata(sd);
|
struct i2c_client *client = v4l2_get_subdevdata(sd);
|
||||||
struct ov9740_priv *priv = to_ov9740(sd);
|
struct ov9740_priv *priv = to_ov9740(sd);
|
||||||
enum v4l2_colorspace cspace;
|
|
||||||
u32 code = mf->code;
|
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ov9740_res_roundup(&mf->width, &mf->height);
|
|
||||||
|
|
||||||
switch (code) {
|
|
||||||
case MEDIA_BUS_FMT_YUYV8_2X8:
|
|
||||||
cspace = V4L2_COLORSPACE_SRGB;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
ret = ov9740_reg_write_array(client, ov9740_defaults,
|
ret = ov9740_reg_write_array(client, ov9740_defaults,
|
||||||
ARRAY_SIZE(ov9740_defaults));
|
ARRAY_SIZE(ov9740_defaults));
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
@ -696,11 +684,7 @@ static int ov9740_s_fmt(struct v4l2_subdev *sd,
|
|||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
mf->code = code;
|
priv->current_mf = *mf;
|
||||||
mf->colorspace = cspace;
|
|
||||||
|
|
||||||
memcpy(&priv->current_mf, mf, sizeof(struct v4l2_mbus_framefmt));
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user