aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/ov772x.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/ov772x.c')
-rw-r--r--drivers/media/video/ov772x.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/drivers/media/video/ov772x.c b/drivers/media/video/ov772x.c
index b720558d8a22..03488f9e1c88 100644
--- a/drivers/media/video/ov772x.c
+++ b/drivers/media/video/ov772x.c
@@ -955,23 +955,22 @@ ov772x_set_fmt_error:
955 return ret; 955 return ret;
956} 956}
957 957
958/* Cannot crop, just return the current geometry */
958static int ov772x_set_crop(struct soc_camera_device *icd, 959static int ov772x_set_crop(struct soc_camera_device *icd,
959 struct v4l2_rect *rect) 960 struct v4l2_rect *rect)
960{ 961{
961 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd)); 962 struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
962 struct ov772x_priv *priv = to_ov772x(client); 963 struct ov772x_priv *priv = to_ov772x(client);
963 int ret;
964 964
965 if (!priv->fmt) 965 if (!priv->fmt || !priv->win)
966 return -EINVAL; 966 return -EINVAL;
967 967
968 ret = ov772x_set_params(client, &rect->width, &rect->height, 968 rect->left = 0;
969 priv->fmt->fourcc); 969 rect->top = 0;
970 if (!ret) { 970 rect->width = priv->win->width;
971 rect->left = 0; 971 rect->height = priv->win->height;
972 rect->top = 0; 972
973 } 973 return 0;
974 return ret;
975} 974}
976 975
977static int ov772x_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f) 976static int ov772x_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)