diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-21 05:03:27 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-22 12:19:52 -0400 |
commit | 3190fbee0176a40a8dd13200862d39f956692f63 (patch) | |
tree | 1a33ef443bcd0fc33f36b89b85eab9184182c79b | |
parent | 9dc033f1eaea01ed6701b16622744c4d57f108b7 (diff) |
[media] em28xx: Only change I2C bus inside em28xx-i2c
There's currently a bug on em28xx-i2c that makes it write the
wrong values to register 06, that controlls the I2C bus speed
and bus.
Fix it to change only the I2C bus flag.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/usb/em28xx/em28xx-i2c.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/media/usb/em28xx/em28xx-i2c.c b/drivers/media/usb/em28xx/em28xx-i2c.c index de9b2086ab2d..9e2fa41044b3 100644 --- a/drivers/media/usb/em28xx/em28xx-i2c.c +++ b/drivers/media/usb/em28xx/em28xx-i2c.c | |||
@@ -284,6 +284,7 @@ static int em28xx_i2c_xfer(struct i2c_adapter *i2c_adap, | |||
284 | struct em28xx *dev = i2c_bus->dev; | 284 | struct em28xx *dev = i2c_bus->dev; |
285 | unsigned bus = i2c_bus->bus; | 285 | unsigned bus = i2c_bus->bus; |
286 | int addr, rc, i, byte; | 286 | int addr, rc, i, byte; |
287 | u8 reg; | ||
287 | 288 | ||
288 | rc = rt_mutex_trylock(&dev->i2c_bus_lock); | 289 | rc = rt_mutex_trylock(&dev->i2c_bus_lock); |
289 | if (rc < 0) | 290 | if (rc < 0) |
@@ -292,10 +293,11 @@ static int em28xx_i2c_xfer(struct i2c_adapter *i2c_adap, | |||
292 | /* Switch I2C bus if needed */ | 293 | /* Switch I2C bus if needed */ |
293 | if (bus != dev->cur_i2c_bus) { | 294 | if (bus != dev->cur_i2c_bus) { |
294 | if (bus == 1) | 295 | if (bus == 1) |
295 | dev->cur_i2c_bus |= EM2874_I2C_SECONDARY_BUS_SELECT; | 296 | reg = EM2874_I2C_SECONDARY_BUS_SELECT; |
296 | else | 297 | else |
297 | dev->cur_i2c_bus &= ~EM2874_I2C_SECONDARY_BUS_SELECT; | 298 | reg = 0; |
298 | em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, dev->cur_i2c_bus); | 299 | em28xx_write_reg_bits(dev, EM28XX_R06_I2C_CLK, reg, |
300 | EM2874_I2C_SECONDARY_BUS_SELECT); | ||
299 | dev->cur_i2c_bus = bus; | 301 | dev->cur_i2c_bus = bus; |
300 | } | 302 | } |
301 | 303 | ||