aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2009-01-29 22:24:01 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:42:36 -0400
commitd251499119e4e893cbf6f7aa134dc80bb9ddd73a (patch)
treea2d6d8d31ea9eae7324e82e4b515844f02027149 /drivers/media/dvb
parent8afe6ad6176205b9612110b8f64dbf3325a1c236 (diff)
V4L/DVB (10415): dib0700: add data debug to dib0700_i2c_xfer_new
Data debug for i2c transactions was provided by the functions called by dib0700_i2c_xfer_legacy, but not dib0700_i2c_xfer_new. This patch adds the missing data debug dumps to dib0700_i2c_xfer_new. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r--drivers/media/dvb/dvb-usb/dib0700_core.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/media/dvb/dvb-usb/dib0700_core.c b/drivers/media/dvb/dvb-usb/dib0700_core.c
index acaa4267eb6c..db7f7f79a66c 100644
--- a/drivers/media/dvb/dvb-usb/dib0700_core.c
+++ b/drivers/media/dvb/dvb-usb/dib0700_core.c
@@ -158,6 +158,10 @@ static int dib0700_i2c_xfer_new(struct i2c_adapter *adap, struct i2c_msg *msg,
158 err("i2c read error (status = %d)\n", result); 158 err("i2c read error (status = %d)\n", result);
159 break; 159 break;
160 } 160 }
161
162 deb_data("<<< ");
163 debug_dump(msg[i].buf, msg[i].len, deb_data);
164
161 } else { 165 } else {
162 /* Write request */ 166 /* Write request */
163 buf[0] = REQUEST_NEW_I2C_WRITE; 167 buf[0] = REQUEST_NEW_I2C_WRITE;
@@ -169,6 +173,9 @@ static int dib0700_i2c_xfer_new(struct i2c_adapter *adap, struct i2c_msg *msg,
169 /* The Actual i2c payload */ 173 /* The Actual i2c payload */
170 memcpy(&buf[4], msg[i].buf, msg[i].len); 174 memcpy(&buf[4], msg[i].buf, msg[i].len);
171 175
176 deb_data(">>> ");
177 debug_dump(buf, msg[i].len + 4, deb_data);
178
172 result = usb_control_msg(d->udev, 179 result = usb_control_msg(d->udev,
173 usb_sndctrlpipe(d->udev, 0), 180 usb_sndctrlpipe(d->udev, 0),
174 REQUEST_NEW_I2C_WRITE, 181 REQUEST_NEW_I2C_WRITE,