USB: spcp8x5.c: remove dbg() usage
dbg() is a usb-serial specific macro. This patch converts the spcp8x5.c driver to use dev_dbg() instead to tie into the dynamic debug infrastructure. CC: Rusty Russell <rusty@rustcorp.com.au> CC: Alan Stern <stern@rowland.harvard.edu> CC: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9760b28324
commit
fe2baf87a8
1 changed files with 8 additions and 4 deletions
|
@ -425,7 +425,7 @@ static void spcp8x5_set_termios(struct tty_struct *tty,
|
||||||
if (i < 0)
|
if (i < 0)
|
||||||
dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n",
|
dev_err(&port->dev, "Set UART format %#x failed (error = %d)\n",
|
||||||
uartdata, i);
|
uartdata, i);
|
||||||
dbg("0x21:0x40:0:0 %d", i);
|
dev_dbg(&port->dev, "0x21:0x40:0:0 %d\n", i);
|
||||||
|
|
||||||
if (cflag & CRTSCTS) {
|
if (cflag & CRTSCTS) {
|
||||||
/* enable hardware flow control */
|
/* enable hardware flow control */
|
||||||
|
@ -569,15 +569,19 @@ static int spcp8x5_ioctl(struct tty_struct *tty,
|
||||||
unsigned int cmd, unsigned long arg)
|
unsigned int cmd, unsigned long arg)
|
||||||
{
|
{
|
||||||
struct usb_serial_port *port = tty->driver_data;
|
struct usb_serial_port *port = tty->driver_data;
|
||||||
dbg("%s (%d) cmd = 0x%04x", __func__, port->number, cmd);
|
|
||||||
|
dev_dbg(&port->dev, "%s (%d) cmd = 0x%04x\n", __func__,
|
||||||
|
port->number, cmd);
|
||||||
|
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case TIOCMIWAIT:
|
case TIOCMIWAIT:
|
||||||
dbg("%s (%d) TIOCMIWAIT", __func__, port->number);
|
dev_dbg(&port->dev, "%s (%d) TIOCMIWAIT\n", __func__,
|
||||||
|
port->number);
|
||||||
return spcp8x5_wait_modem_info(port, arg);
|
return spcp8x5_wait_modem_info(port, arg);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
dbg("%s not supported = 0x%04x", __func__, cmd);
|
dev_dbg(&port->dev, "%s not supported = 0x%04x", __func__,
|
||||||
|
cmd);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue