diff options
Diffstat (limited to 'drivers/media/video/v4l2-subdev.c')
-rw-r--r-- | drivers/media/video/v4l2-subdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/v4l2-subdev.c b/drivers/media/video/v4l2-subdev.c index db6e859b93d4..9182f81deb5b 100644 --- a/drivers/media/video/v4l2-subdev.c +++ b/drivers/media/video/v4l2-subdev.c | |||
@@ -245,7 +245,7 @@ static long subdev_do_ioctl(struct file *file, unsigned int cmd, void *arg) | |||
245 | memset(&sel, 0, sizeof(sel)); | 245 | memset(&sel, 0, sizeof(sel)); |
246 | sel.which = crop->which; | 246 | sel.which = crop->which; |
247 | sel.pad = crop->pad; | 247 | sel.pad = crop->pad; |
248 | sel.target = V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL; | 248 | sel.target = V4L2_SEL_TGT_CROP; |
249 | 249 | ||
250 | rval = v4l2_subdev_call( | 250 | rval = v4l2_subdev_call( |
251 | sd, pad, get_selection, subdev_fh, &sel); | 251 | sd, pad, get_selection, subdev_fh, &sel); |
@@ -274,7 +274,7 @@ static long subdev_do_ioctl(struct file *file, unsigned int cmd, void *arg) | |||
274 | memset(&sel, 0, sizeof(sel)); | 274 | memset(&sel, 0, sizeof(sel)); |
275 | sel.which = crop->which; | 275 | sel.which = crop->which; |
276 | sel.pad = crop->pad; | 276 | sel.pad = crop->pad; |
277 | sel.target = V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL; | 277 | sel.target = V4L2_SEL_TGT_CROP; |
278 | sel.r = crop->rect; | 278 | sel.r = crop->rect; |
279 | 279 | ||
280 | rval = v4l2_subdev_call( | 280 | rval = v4l2_subdev_call( |