aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Toth <stoth@hauppauge.com>2007-03-16 10:48:33 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-10-09 21:08:00 -0400
commita2129af5b65e28dc3a10402603aa714e493b2169 (patch)
tree563f1c0c3c46778bf69c4039f210e42d3cb67e60
parent03121f05f98cf9bba8f0fe77ef381c17681e1386 (diff)
V4L/DVB (6153): I2C bus 3 register was incorrect
I2C bus 3 was being initialised with the incorrect address register. Signed-off-by: Steven Toth <stoth@hauppauge.com> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r--drivers/media/video/cx23885/cx23885-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx23885/cx23885-core.c b/drivers/media/video/cx23885/cx23885-core.c
index 4e6e8737e38e..fda0c1631dbd 100644
--- a/drivers/media/video/cx23885/cx23885-core.c
+++ b/drivers/media/video/cx23885/cx23885-core.c
@@ -722,7 +722,7 @@ static int cx23885_dev_setup(struct cx23885_dev *dev)
722 dev->i2c_bus[2].dev = dev; 722 dev->i2c_bus[2].dev = dev;
723 dev->i2c_bus[2].reg_stat = I2C3_STAT; 723 dev->i2c_bus[2].reg_stat = I2C3_STAT;
724 dev->i2c_bus[2].reg_ctrl = I2C3_CTRL; 724 dev->i2c_bus[2].reg_ctrl = I2C3_CTRL;
725 dev->i2c_bus[2].reg_addr = I2C2_ADDR; 725 dev->i2c_bus[2].reg_addr = I2C3_ADDR;
726 dev->i2c_bus[2].reg_rdata = I2C3_RDATA; 726 dev->i2c_bus[2].reg_rdata = I2C3_RDATA;
727 dev->i2c_bus[2].reg_wdata = I2C3_WDATA; 727 dev->i2c_bus[2].reg_wdata = I2C3_WDATA;
728 dev->i2c_bus[2].i2c_period = (0x07 << 24); /* 1.95MHz */ 728 dev->i2c_bus[2].i2c_period = (0x07 << 24); /* 1.95MHz */