upstream: [media] ths8200: Zero blanking level for RGB
authorMartin Bugge <marbugge@cisco.com>
Fri, 7 Feb 2014 08:11:03 +0000 (05:11 -0300)
committerChanho Park <chanho61.park@samsung.com>
Tue, 18 Nov 2014 02:54:44 +0000 (11:54 +0900)
Currently only RGB444 input data is supported so set to zero.

Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Martin Bugge <marbugge@cisco.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/i2c/ths8200.c

index 20bac34..d482e94 100644 (file)
@@ -253,8 +253,8 @@ static void ths8200_core_init(struct v4l2_subdev *sd)
        /* Disable embedded syncs on the output by setting
         * the amplitude to zero for all channels.
         */
-       ths8200_write(sd, THS8200_DTG1_Y_SYNC_MSB, 0x2a);
-       ths8200_write(sd, THS8200_DTG1_CBCR_SYNC_MSB, 0x2a);
+       ths8200_write(sd, THS8200_DTG1_Y_SYNC_MSB, 0x00);
+       ths8200_write(sd, THS8200_DTG1_CBCR_SYNC_MSB, 0x00);
 }
 
 static void ths8200_setup(struct v4l2_subdev *sd, struct v4l2_bt_timings *bt)