projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e82eea7
)
[media] anysee: add support for two byte I2C address
author
Antti Palosaari
<crope@iki.fi>
Tue, 12 Apr 2011 22:49:25 +0000
(19:49 -0300)
committer
Mauro Carvalho Chehab
<mchehab@redhat.com>
Fri, 20 May 2011 12:27:11 +0000
(09:27 -0300)
After that Anysee I2C adapter is capable of one and two byte long
I2C addresses in case of read from I2C bus.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/dvb-usb/anysee.c
patch
|
blob
|
history
diff --git
a/drivers/media/dvb/dvb-usb/anysee.c
b/drivers/media/dvb/dvb-usb/anysee.c
index
2701947
..
f365c20
100644
(file)
--- a/
drivers/media/dvb/dvb-usb/anysee.c
+++ b/
drivers/media/dvb/dvb-usb/anysee.c
@@
-186,8
+186,8
@@
static int anysee_master_xfer(struct i2c_adapter *adap, struct i2c_msg *msg,
buf[0] = CMD_I2C_READ;
buf[1] = (msg[i].addr << 1) | 0x01;
buf[2] = msg[i].buf[0];
- buf[3] =
0x00
;
- buf[4] =
0x00
;
+ buf[3] =
msg[i].buf[1]
;
+ buf[4] =
msg[i].len-1
;
buf[5] = msg[i+1].len;
ret = anysee_ctrl_msg(d, buf, sizeof(buf), msg[i+1].buf,
msg[i+1].len);