diff options
author | Devin Heitmueller <dheitmueller@linuxtv.org> | 2009-01-20 23:40:04 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:42:28 -0400 |
commit | 8db12cdfa65df5abb76ba352bc21f12742fd473d (patch) | |
tree | 259c982f2458d4a7e93be2d8a7724e5f1ce7011a | |
parent | c985a8dca3320a11550efc995d8bb40d1d739493 (diff) |
V4L/DVB (10320): dib0700: fix i2c error message to make data type clear
Make it clear that the address is in hex format.
Signed-off-by: Devin Heitmueller <dheitmueller@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | drivers/media/dvb/dvb-usb/dib0700_core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/dvb/dvb-usb/dib0700_core.c b/drivers/media/dvb/dvb-usb/dib0700_core.c index 200b215f4d8b..acaa4267eb6c 100644 --- a/drivers/media/dvb/dvb-usb/dib0700_core.c +++ b/drivers/media/dvb/dvb-usb/dib0700_core.c | |||
@@ -211,7 +211,8 @@ static int dib0700_i2c_xfer_legacy(struct i2c_adapter *adap, | |||
211 | 211 | ||
212 | /* special thing in the current firmware: when length is zero the read-failed */ | 212 | /* special thing in the current firmware: when length is zero the read-failed */ |
213 | if ((len = dib0700_ctrl_rd(d, buf, msg[i].len + 2, msg[i+1].buf, msg[i+1].len)) <= 0) { | 213 | if ((len = dib0700_ctrl_rd(d, buf, msg[i].len + 2, msg[i+1].buf, msg[i+1].len)) <= 0) { |
214 | deb_info("I2C read failed on address %x\n", msg[i].addr); | 214 | deb_info("I2C read failed on address 0x%02x\n", |
215 | msg[i].addr); | ||
215 | break; | 216 | break; |
216 | } | 217 | } |
217 | 218 | ||