diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2007-01-24 19:02:31 +0100 |
---|---|---|
committer | Adrian Bunk <bunk@stusta.de> | 2007-01-24 19:02:31 +0100 |
commit | 28a25f33e5d2bfb0fd422976a1f7c9184c9ee546 (patch) | |
tree | 8587f41c1dd11e50d9b88e33219a996d1af9f272 /drivers | |
parent | 14c22e2cfb749a49263f5bff87616e8f7a0a0c2e (diff) |
V4L/DVB: Flexcop-usb: fix debug printk
.. fix debug printk. Why, oh why, one would want to do
(u16 & 0xff) << 8
and print it with %02x format?
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/dvb/b2c2/flexcop-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/b2c2/flexcop-usb.c b/drivers/media/dvb/b2c2/flexcop-usb.c index a6c91db40ad..f182a7bb7cd 100644 --- a/drivers/media/dvb/b2c2/flexcop-usb.c +++ b/drivers/media/dvb/b2c2/flexcop-usb.c @@ -246,7 +246,7 @@ static int flexcop_usb_i2c_req(struct flexcop_usb *fc_usb, wIndex = (chipaddr << 8 ) | addr; deb_i2c("i2c %2d: %02x %02x %02x %02x %02x %02x\n",func,request_type,req, - ((wValue && 0xff) << 8),wValue >> 8,((wIndex && 0xff) << 8),wIndex >> 8); + wValue & 0xff, wValue >> 8, wIndex & 0xff, wIndex >> 8); len = usb_control_msg(fc_usb->udev,pipe, req, |