diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-15 16:27:11 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-15 16:27:11 -0700 |
commit | c89aa63898f2238cd3c6537963a82b05146b9338 (patch) | |
tree | 68961eef0d6763cdc03149d9ab6f41d2a1ecb044 /drivers/usb/serial/belkin_sa.c | |
parent | d2f20e12e93820b0ad891e101987e669179e0978 (diff) |
USB: belkin_sa.c: remove dbg() usage
dbg() is a usb-serial specific macro. This patch converts
the belkin_sa.c driver to use dev_dbg() instead to tie into the
dynamic debug infrastructure.
CC: William Greathouse <wgreathouse@smva.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/belkin_sa.c')
-rw-r--r-- | drivers/usb/serial/belkin_sa.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/usb/serial/belkin_sa.c b/drivers/usb/serial/belkin_sa.c index 5965df72cd07..6b7365632951 100644 --- a/drivers/usb/serial/belkin_sa.c +++ b/drivers/usb/serial/belkin_sa.c @@ -197,12 +197,12 @@ static void belkin_sa_read_int_callback(struct urb *urb) case -ENOENT: case -ESHUTDOWN: /* this urb is terminated, clean up */ - dbg("%s - urb shutting down with status: %d", - __func__, status); + dev_dbg(&port->dev, "%s - urb shutting down with status: %d\n", + __func__, status); return; default: - dbg("%s - nonzero urb status received: %d", - __func__, status); + dev_dbg(&port->dev, "%s - nonzero urb status received: %d\n", + __func__, status); goto exit; } @@ -391,7 +391,8 @@ static void belkin_sa_set_termios(struct tty_struct *tty, urb_value = BELKIN_SA_DATA_BITS(8); break; default: - dbg("CSIZE was not CS5-CS8, using default of 8"); + dev_dbg(&port->dev, + "CSIZE was not CS5-CS8, using default of 8\n"); urb_value = BELKIN_SA_DATA_BITS(8); break; } |