diff options
author | Linux Build Service Account <lnxbuild@localhost> | 2018-03-17 03:13:27 -0700 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-03-17 03:13:27 -0700 |
commit | 9d0097e58a1019cc260c871c0d60763186997b1a (patch) | |
tree | e75170e7e20f7c526308f3aa6eb05dd1a4bc860f /drivers/media | |
parent | bd37ebb718a257a6f4cd6f00a4b1f0e6bfd9b5b7 (diff) | |
parent | 88628a32e14eed2fb3fd1c2025d56d6751625de2 (diff) |
Merge "adv7481: Fix CVBS input resolution."
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/i2c/adv7481.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/adv7481.c b/drivers/media/i2c/adv7481.c index 7cac0a8abd81..aa9dcc67c66c 100644 --- a/drivers/media/i2c/adv7481.c +++ b/drivers/media/i2c/adv7481.c @@ -1998,7 +1998,7 @@ static int adv7481_get_fmt(struct v4l2_subdev *sd, fmt->code = MEDIA_BUS_FMT_UYVY8_2X8; fmt->colorspace = V4L2_COLORSPACE_SMPTE170M; fmt->width = 720; - fmt->height = 576; + fmt->height = 507; break; default: return -EINVAL; |