diff options
author | Peter Gielda <pgielda@antmicro.com> | 2013-07-19 17:11:21 +0200 |
---|---|---|
committer | Marcel Ziswiler <marcel.ziswiler@toradex.com> | 2013-07-31 15:30:10 +0200 |
commit | 4ace2a170b8e66ea59f300b3219484c43247da34 (patch) | |
tree | a4245a3db30e172a4454eb3ff7d0df1719331d17 | |
parent | 6054fccc59e6a9c521bc735b9e094d1be0f2906e (diff) |
media: adv7180: set resolution to 720 x 576
-rw-r--r-- | drivers/media/video/adv7180.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/adv7180.c b/drivers/media/video/adv7180.c index 8b5c80fb22a7..eac432982a5a 100644 --- a/drivers/media/video/adv7180.c +++ b/drivers/media/video/adv7180.c @@ -305,6 +305,10 @@ static int adv7180_try_fmt(struct v4l2_subdev *sd, mf->code = V4L2_MBUS_FMT_YUYV8_2X8; mf->colorspace = V4L2_COLORSPACE_SRGB; + // PAL + mf->width = 720; + mf->height = 576; + return 0; } |