Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 164221
b: refs/heads/master
c: 0d205b6
h: refs/heads/master
i:
  164219: 9949812
v: v3
  • Loading branch information
Guennadi Liakhovetski authored and Mauro Carvalho Chehab committed Sep 19, 2009
1 parent 80ad15e commit f91d5eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e330919a215714796efb451984a753a46b570eb7
refs/heads/master: 0d205b6a09177cd14c109321fb40873418a11f7e
10 changes: 8 additions & 2 deletions trunk/drivers/media/video/ov772x.c
Original file line number Diff line number Diff line change
Expand Up @@ -960,12 +960,18 @@ static int ov772x_set_crop(struct soc_camera_device *icd,
{
struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
struct ov772x_priv *priv = to_ov772x(client);
int ret;

if (!priv->fmt)
return -EINVAL;

return ov772x_set_params(client, &rect->width, &rect->height,
priv->fmt->fourcc);
ret = ov772x_set_params(client, &rect->width, &rect->height,
priv->fmt->fourcc);
if (!ret) {
rect->left = 0;
rect->top = 0;
}
return ret;
}

static int ov772x_s_fmt(struct v4l2_subdev *sd, struct v4l2_format *f)
Expand Down

0 comments on commit f91d5eb

Please sign in to comment.