diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-25 11:36:42 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-25 11:36:42 -0300 |
commit | 41eb6257f4186dbc5e9f6b9258d7e903d016f2c5 (patch) | |
tree | b379ac5be0f7ec3258f29411e167950787fed190 /linux | |
parent | 52b4436f698bfa9b1a168f77b516b15c27245ba4 (diff) | |
download | mediapointer-dvb-s2-41eb6257f4186dbc5e9f6b9258d7e903d016f2c5.tar.gz mediapointer-dvb-s2-41eb6257f4186dbc5e9f6b9258d7e903d016f2c5.tar.bz2 |
5/7 Don't mirror ov7670 images by default
From: Jonathan Corbet <corbet@lwn.net>
Don't mirror ov7670 images by default
The ov7670 sensor driver sets the mirror bit by default, which is not
the desired mode. OLPC has been running with this patch for a while.
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/ov7670.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/ov7670.c b/linux/drivers/media/video/ov7670.c index b033bf334..2e215dc52 100644 --- a/linux/drivers/media/video/ov7670.c +++ b/linux/drivers/media/video/ov7670.c @@ -257,7 +257,7 @@ static struct regval_list ov7670_default_regs[] = { /* Almost all of these are magic "reserved" values. */ { REG_COM5, 0x61 }, { REG_COM6, 0x4b }, - { 0x16, 0x02 }, { REG_MVFP, 0x07|MVFP_MIRROR }, + { 0x16, 0x02 }, { REG_MVFP, 0x07 }, { 0x21, 0x02 }, { 0x22, 0x91 }, { 0x29, 0x07 }, { 0x33, 0x0b }, { 0x35, 0x0b }, { 0x37, 0x1d }, |