diff options
Diffstat (limited to 'drivers/usb/serial/symbolserial.c')
-rw-r--r-- | drivers/usb/serial/symbolserial.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/serial/symbolserial.c b/drivers/usb/serial/symbolserial.c index f7c440541754..e53d2aac35c5 100644 --- a/drivers/usb/serial/symbolserial.c +++ b/drivers/usb/serial/symbolserial.c | |||
@@ -62,12 +62,12 @@ static void symbol_int_callback(struct urb *urb) | |||
62 | case -ENOENT: | 62 | case -ENOENT: |
63 | case -ESHUTDOWN: | 63 | case -ESHUTDOWN: |
64 | /* this urb is terminated, clean up */ | 64 | /* this urb is terminated, clean up */ |
65 | dbg("%s - urb shutting down with status: %d", | 65 | dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n", |
66 | __func__, status); | 66 | __func__, status); |
67 | return; | 67 | return; |
68 | default: | 68 | default: |
69 | dbg("%s - nonzero urb status received: %d", | 69 | dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n", |
70 | __func__, status); | 70 | __func__, status); |
71 | goto exit; | 71 | goto exit; |
72 | } | 72 | } |
73 | 73 | ||