Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 248694
b: refs/heads/master
c: 59d7fec
h: refs/heads/master
v: v3
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Apr 13, 2011
1 parent 040ccd9 commit aa9426d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bce1a702ed9bd9aa3549352b3134e110bf076586
refs/heads/master: 59d7fec7c6908604862658a3679ac44c2c3eea44
6 changes: 3 additions & 3 deletions trunk/drivers/usb/class/cdc-acm.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ static void acm_ctrl_irq(struct urb *urb)
retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval)
dev_err(&urb->dev->dev, "%s - usb_submit_urb failed with "
"result %d", __func__, retval);
"result %d\n", __func__, retval);
}

/* data interface returns incoming bytes, or we got unthrottled */
Expand All @@ -355,7 +355,7 @@ static void acm_read_bulk(struct urb *urb)
dbg("Entering acm_read_bulk with status %d", status);

if (!ACM_READY(acm)) {
dev_dbg(&acm->data->dev, "Aborting, acm not ready");
dev_dbg(&acm->data->dev, "Aborting, acm not ready\n");
return;
}
usb_mark_last_busy(acm->dev);
Expand Down Expand Up @@ -1224,7 +1224,7 @@ static int acm_probe(struct usb_interface *intf,
snd->urb = usb_alloc_urb(0, GFP_KERNEL);
if (snd->urb == NULL) {
dev_dbg(&intf->dev,
"out of memory (write urbs usb_alloc_urb)");
"out of memory (write urbs usb_alloc_urb)\n");
goto alloc_fail8;
}

Expand Down

0 comments on commit aa9426d

Please sign in to comment.