Skip to content

Commit

Permalink
dm9601: Fix printk
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Peter Korsgaard authored and Jeff Garzik committed Nov 24, 2007
1 parent 9e55593 commit 77b6901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/usb/dm9601.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static void dm_write_async_callback(struct urb *urb)
struct usb_ctrlrequest *req = (struct usb_ctrlrequest *)urb->context;

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);

kfree(req);
Expand Down

0 comments on commit 77b6901

Please sign in to comment.