aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/ov772x.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/media/video/ov772x.c b/drivers/media/video/ov772x.c
index c0c549fa786f..b720558d8a22 100644
--- a/drivers/media/video/ov772x.c
+++ b/drivers/media/video/ov772x.c
@@ -960,12 +960,18 @@ static int ov772x_set_crop(struct soc_camera_device *icd,
960{ 960{
961 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd)); 961 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
962 struct ov772x_priv *priv = to_ov772x(client); 962 struct ov772x_priv *priv = to_ov772x(client);
963 int ret;
963 964
964 if (!priv->fmt) 965 if (!priv->fmt)
965 return -EINVAL; 966 return -EINVAL;
966 967
967 return ov772x_set_params(client, &rect->width, &rect->height, 968 ret = ov772x_set_params(client, &rect->width, &rect->height,
968 priv->fmt->fourcc); 969 priv->fmt->fourcc);
970 if (!ret) {
971 rect->left = 0;
972 rect->top = 0;
973 }
974 return ret;
969} 975}
970 976
971static int ov772x_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f) 977static int ov772x_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)