From: Ulrich Hecht Date: Wed, 17 Feb 2016 14:57:56 +0000 (-0200) Subject: [media] adv7604: fix SPA register location for ADV7612 X-Git-Tag: v4.14-rc1~3648^2^2~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5a442aab4878489455520980d578ce665033465;p=platform%2Fkernel%2Flinux-rpi.git [media] adv7604: fix SPA register location for ADV7612 SPA location LSB register is at 0x70. Signed-off-by: Ulrich Hecht Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/i2c/adv7604.c b/drivers/media/i2c/adv7604.c index befb07d..41a1bfc 100644 --- a/drivers/media/i2c/adv7604.c +++ b/drivers/media/i2c/adv7604.c @@ -2095,7 +2095,8 @@ static int adv76xx_set_edid(struct v4l2_subdev *sd, struct v4l2_edid *edid) rep_write(sd, 0x76, spa_loc & 0xff); rep_write_clr_set(sd, 0x77, 0x40, (spa_loc & 0x100) >> 2); } else { - /* FIXME: Where is the SPA location LSB register ? */ + /* ADV7612 Software Manual Rev. A, p. 15 */ + rep_write(sd, 0x70, spa_loc & 0xff); rep_write_clr_set(sd, 0x71, 0x01, (spa_loc & 0x100) >> 8); }