Skip to content

Commit

Permalink
USB: cdc-acm: clean up dev_err and dev_dbg
Browse files Browse the repository at this point in the history
Clean up some dev_err and dev_dbg messages and make sure that the
appropriate interface device is used for reporting consistently
throughout.

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Apr 13, 2011
1 parent 255ab56 commit 1d9846e
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions drivers/usb/class/cdc-acm.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,8 @@ static void acm_ctrl_irq(struct urb *urb)
exit:
retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval)
dev_err(&urb->dev->dev, "%s - usb_submit_urb failed with "
"result %d\n", __func__, retval);
dev_err(&acm->control->dev, "%s - usb_submit_urb failed: %d\n",
__func__, retval);
}

/* data interface returns incoming bytes, or we got unthrottled */
Expand All @@ -355,13 +355,14 @@ 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\n");
dev_dbg(&acm->data->dev, "%s - acm not ready\n", __func__);
return;
}
usb_mark_last_busy(acm->dev);

if (status)
dev_dbg(&acm->data->dev, "bulk rx status %d\n", status);
dev_dbg(&acm->data->dev, "%s - non-zero urb status: %d\n",
__func__, status);

buf = rcv->buffer;
buf->size = urb->actual_length;
Expand Down Expand Up @@ -511,7 +512,8 @@ static void acm_write_bulk(struct urb *urb)

if (verbose || urb->status
|| (urb->actual_length != urb->transfer_buffer_length))
dev_dbg(&acm->data->dev, "tx %d/%d bytes -- > %d\n",
dev_dbg(&acm->data->dev, "%s - len %d/%d, status %d\n",
__func__,
urb->actual_length,
urb->transfer_buffer_length,
urb->status);
Expand All @@ -530,7 +532,8 @@ static void acm_softint(struct work_struct *work)
struct acm *acm = container_of(work, struct acm, work);
struct tty_struct *tty;

dev_vdbg(&acm->data->dev, "tx work\n");
dev_vdbg(&acm->data->dev, "%s\n", __func__);

if (!ACM_READY(acm))
return;
tty = tty_port_tty_get(&acm->port);
Expand Down

0 comments on commit 1d9846e

Please sign in to comment.