Skip to content

Commit

Permalink
V4L/DVB (4818): Flexcop-usb: fix debug printk
Browse files Browse the repository at this point in the history
.. fix debug printk. Why, oh why, one would want to do
	(u16 & 0xff) << 8
and print it with %02x format?
Acked-by: Patrick Boettcher <pb@linuxtv.org>

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Alexey Dobriyan authored and Mauro Carvalho Chehab committed Nov 13, 2006
1 parent fef4fa1 commit 6f36fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/b2c2/flexcop-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6f36fbb

Please sign in to comment.