summaryrefslogtreecommitdiff
path: root/drivers/media/i2c
diff options
context:
space:
mode:
authorSuprith Malligere Shankaregowda <supgow@codeaurora.org>2018-03-15 17:48:01 +0530
committerGerrit - the friendly Code Review server <code-review@localhost>2018-03-15 21:07:29 -0700
commit88628a32e14eed2fb3fd1c2025d56d6751625de2 (patch)
tree8f9ee2cfe6ad60c09be97ece33a62287778bac75 /drivers/media/i2c
parent56fe93b3ca621436240ed166cee57fdf3461f797 (diff)
adv7481: Fix CVBS input resolution.
Modify CVBS resolution to 720x507 so that cvbs frames displayed correctly. Change-Id: I036aaa4606ff00aab107834fc3e39a5a096c3d87 Signed-off-by: Suprith Malligere Shankaregowda <supgow@codeaurora.org>
Diffstat (limited to 'drivers/media/i2c')
-rw-r--r--drivers/media/i2c/adv7481.c2
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;