summaryrefslogtreecommitdiffstats
path: root/drivers/media/i2c/adv7511.c
diff options
context:
space:
mode:
authorHans Verkuil2015-11-12 16:30:39 +0100
committerMauro Carvalho Chehab2015-11-17 17:39:54 +0100
commitdc5e02050b8574393d921ed76d37eb359b55f39a (patch)
treea8c301f16d6ff5010aaace634ac15533928fb886 /drivers/media/i2c/adv7511.c
parent[media] v4l2-dv-timings: Compare horizontal blanking (diff)
downloadkernel-qcow2-linux-dc5e02050b8574393d921ed76d37eb359b55f39a.tar.gz
kernel-qcow2-linux-dc5e02050b8574393d921ed76d37eb359b55f39a.tar.xz
kernel-qcow2-linux-dc5e02050b8574393d921ed76d37eb359b55f39a.zip
[media] adv7511: fix incorrect bit offset
The quantization bits are in bits 7-6, not 7-4, so shift by 6 instead of 4. This bug is caused by a typo in the adv7511 datasheet. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/i2c/adv7511.c')
-rw-r--r--drivers/media/i2c/adv7511.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/adv7511.c b/drivers/media/i2c/adv7511.c
index d24c9ebc740e..eeb2cd823c4d 100644
--- a/drivers/media/i2c/adv7511.c
+++ b/drivers/media/i2c/adv7511.c
@@ -1116,7 +1116,7 @@ static int adv7511_set_fmt(struct v4l2_subdev *sd,
adv7511_wr_and_or(sd, 0x55, 0x9f, y << 5);
adv7511_wr_and_or(sd, 0x56, 0x3f, c << 6);
adv7511_wr_and_or(sd, 0x57, 0x83, (ec << 4) | (q << 2));
- adv7511_wr_and_or(sd, 0x59, 0x0f, yq << 4);
+ adv7511_wr_and_or(sd, 0x59, 0x3f, yq << 6);
adv7511_wr_and_or(sd, 0x4a, 0xff, 1);
return 0;