From: Rich.jiangyk Date: Mon, 13 Sep 2010 08:51:28 +0000 (+0800) Subject: fix ov9650 init_data bug X-Git-Tag: firefly_0821_release~11152^2 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bf05d0035dedbf6df44e303560c966b7354389e2;p=firefly-linux-kernel-4.4.55.git fix ov9650 init_data bug in sensor_init_data array, register 0x00 was set to 0x00, which cause the initialization unfinished. This setting is useless, so remove it! ov9650 is working better at vga dc/dv now. --- diff --git a/drivers/media/video/ov9650.c b/drivers/media/video/ov9650.c index 42b81b80b9bd..4930818e1c77 100644 --- a/drivers/media/video/ov9650.c +++ b/drivers/media/video/ov9650.c @@ -105,7 +105,7 @@ static struct reginfo sensor_init_data[] = {0x13, 0xe0}, {0x01, 0x80}, {0x02, 0x80}, - {0x00, 0x00}, +// {0x00, 0x00}, //jyk_0913, this setting is useless, but cause init unfinished! {0x10, 0x00}, {0x13, 0xe5}, {0x39, 0x50},