dm9601: Fix printk
A printk in the error handling code of dm9601.c was missing a newline. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
9e555930bd
commit
77b6901573
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ static void dm_write_async_callback(struct urb *urb)
|
||||||
struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
|
struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;
|
||||||
|
|
||||||
if (urb->status < 0)
|
if (urb->status < 0)
|
||||||
printk(KERN_DEBUG "dm_write_async_callback() failed with %d",
|
printk(KERN_DEBUG "dm_write_async_callback() failed with %d\n",
|
||||||
urb->status);
|
urb->status);
|
||||||
|
|
||||||
kfree(req);
|
kfree(req);
|
||||||
|
|
Loading…
Add table
Reference in a new issue