mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
USB: serial: oti6858.c: remove dbg() usage
dbg() was a very old USB-serial-specific macro. This patch removes it from being used in the driver and uses dev_dbg() instead. CC: Johan Hovold <jhovold@gmail.com> 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
7065e8267b
commit
8c8e87bc23
1 changed files with 32 additions and 39 deletions
|
@ -256,11 +256,11 @@ static void setup_line(struct work_struct *work)
|
||||||
priv->setup_done = 1;
|
priv->setup_done = 1;
|
||||||
spin_unlock_irqrestore(&priv->lock, flags);
|
spin_unlock_irqrestore(&priv->lock, flags);
|
||||||
|
|
||||||
dbg("%s(): submitting interrupt urb", __func__);
|
dev_dbg(&port->dev, "%s(): submitting interrupt urb\n", __func__);
|
||||||
result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
|
result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
dev_err(&port->dev, "%s(): usb_submit_urb() failed"
|
dev_err(&port->dev, "%s(): usb_submit_urb() failed with error %d\n",
|
||||||
" with error %d\n", __func__, result);
|
__func__, result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -310,11 +310,11 @@ static void send_data(struct work_struct *work)
|
||||||
if (count == 0) {
|
if (count == 0) {
|
||||||
priv->flags.write_urb_in_use = 0;
|
priv->flags.write_urb_in_use = 0;
|
||||||
|
|
||||||
dbg("%s(): submitting interrupt urb", __func__);
|
dev_dbg(&port->dev, "%s(): submitting interrupt urb\n", __func__);
|
||||||
result = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
|
result = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
dev_err(&port->dev, "%s(): usb_submit_urb() failed"
|
dev_err(&port->dev, "%s(): usb_submit_urb() failed with error %d\n",
|
||||||
" with error %d\n", __func__, result);
|
__func__, result);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -325,8 +325,8 @@ static void send_data(struct work_struct *work)
|
||||||
port->write_urb->transfer_buffer_length = count;
|
port->write_urb->transfer_buffer_length = count;
|
||||||
result = usb_submit_urb(port->write_urb, GFP_NOIO);
|
result = usb_submit_urb(port->write_urb, GFP_NOIO);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
dev_err_console(port, "%s(): usb_submit_urb() failed"
|
dev_err_console(port, "%s(): usb_submit_urb() failed with error %d\n",
|
||||||
" with error %d\n", __func__, result);
|
__func__, result);
|
||||||
priv->flags.write_urb_in_use = 0;
|
priv->flags.write_urb_in_use = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -420,10 +420,8 @@ static void oti6858_set_termios(struct tty_struct *tty,
|
||||||
__le16 divisor;
|
__le16 divisor;
|
||||||
int br;
|
int br;
|
||||||
|
|
||||||
if (!tty) {
|
if (!tty)
|
||||||
dbg("%s(): no tty structures", __func__);
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
cflag = tty->termios->c_cflag;
|
cflag = tty->termios->c_cflag;
|
||||||
|
|
||||||
|
@ -560,11 +558,11 @@ static int oti6858_open(struct tty_struct *tty, struct usb_serial_port *port)
|
||||||
spin_unlock_irqrestore(&priv->lock, flags);
|
spin_unlock_irqrestore(&priv->lock, flags);
|
||||||
kfree(buf);
|
kfree(buf);
|
||||||
|
|
||||||
dbg("%s(): submitting interrupt urb", __func__);
|
dev_dbg(&port->dev, "%s(): submitting interrupt urb\n", __func__);
|
||||||
result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
|
result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
dev_err(&port->dev, "%s(): usb_submit_urb() failed"
|
dev_err(&port->dev, "%s(): usb_submit_urb() failed with error %d\n",
|
||||||
" with error %d\n", __func__, result);
|
__func__, result);
|
||||||
oti6858_close(port);
|
oti6858_close(port);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -586,14 +584,14 @@ static void oti6858_close(struct usb_serial_port *port)
|
||||||
kfifo_reset_out(&port->write_fifo);
|
kfifo_reset_out(&port->write_fifo);
|
||||||
spin_unlock_irqrestore(&port->lock, flags);
|
spin_unlock_irqrestore(&port->lock, flags);
|
||||||
|
|
||||||
dbg("%s(): after buf_clear()", __func__);
|
dev_dbg(&port->dev, "%s(): after buf_clear()\n", __func__);
|
||||||
|
|
||||||
/* cancel scheduled setup */
|
/* cancel scheduled setup */
|
||||||
cancel_delayed_work_sync(&priv->delayed_setup_work);
|
cancel_delayed_work_sync(&priv->delayed_setup_work);
|
||||||
cancel_delayed_work_sync(&priv->delayed_write_work);
|
cancel_delayed_work_sync(&priv->delayed_write_work);
|
||||||
|
|
||||||
/* shutdown our urbs */
|
/* shutdown our urbs */
|
||||||
dbg("%s(): shutting down urbs", __func__);
|
dev_dbg(&port->dev, "%s(): shutting down urbs\n", __func__);
|
||||||
usb_kill_urb(port->write_urb);
|
usb_kill_urb(port->write_urb);
|
||||||
usb_kill_urb(port->read_urb);
|
usb_kill_urb(port->read_urb);
|
||||||
usb_kill_urb(port->interrupt_in_urb);
|
usb_kill_urb(port->interrupt_in_urb);
|
||||||
|
@ -607,8 +605,8 @@ static int oti6858_tiocmset(struct tty_struct *tty,
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
u8 control;
|
u8 control;
|
||||||
|
|
||||||
dbg("%s(port = %d, set = 0x%08x, clear = 0x%08x)",
|
dev_dbg(&port->dev, "%s(set = 0x%08x, clear = 0x%08x)\n",
|
||||||
__func__, port->number, set, clear);
|
__func__, set, clear);
|
||||||
|
|
||||||
/* FIXME: check if this is correct (active high/low) */
|
/* FIXME: check if this is correct (active high/low) */
|
||||||
spin_lock_irqsave(&priv->lock, flags);
|
spin_lock_irqsave(&priv->lock, flags);
|
||||||
|
@ -655,7 +653,7 @@ static int oti6858_tiocmget(struct tty_struct *tty)
|
||||||
if ((pin_state & PIN_DCD) != 0)
|
if ((pin_state & PIN_DCD) != 0)
|
||||||
result |= TIOCM_CD;
|
result |= TIOCM_CD;
|
||||||
|
|
||||||
dbg("%s() = 0x%08x", __func__, result);
|
dev_dbg(&port->dev, "%s() = 0x%08x\n", __func__, result);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -700,15 +698,14 @@ static int oti6858_ioctl(struct tty_struct *tty,
|
||||||
{
|
{
|
||||||
struct usb_serial_port *port = tty->driver_data;
|
struct usb_serial_port *port = tty->driver_data;
|
||||||
|
|
||||||
dbg("%s(port = %d, cmd = 0x%04x, arg = 0x%08lx)",
|
dev_dbg(&port->dev, "%s(cmd = 0x%04x, arg = 0x%08lx)\n", __func__, cmd, arg);
|
||||||
__func__, port->number, cmd, arg);
|
|
||||||
|
|
||||||
switch (cmd) {
|
switch (cmd) {
|
||||||
case TIOCMIWAIT:
|
case TIOCMIWAIT:
|
||||||
dbg("%s(): TIOCMIWAIT", __func__);
|
dev_dbg(&port->dev, "%s(): TIOCMIWAIT\n", __func__);
|
||||||
return wait_modem_info(port, arg);
|
return wait_modem_info(port, arg);
|
||||||
default:
|
default:
|
||||||
dbg("%s(): 0x%04x not supported", __func__, cmd);
|
dev_dbg(&port->dev, "%s(): 0x%04x not supported\n", __func__, cmd);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return -ENOIOCTLCMD;
|
return -ENOIOCTLCMD;
|
||||||
|
@ -738,12 +735,12 @@ static void oti6858_read_int_callback(struct urb *urb)
|
||||||
case -ENOENT:
|
case -ENOENT:
|
||||||
case -ESHUTDOWN:
|
case -ESHUTDOWN:
|
||||||
/* this urb is terminated, clean up */
|
/* this urb is terminated, clean up */
|
||||||
dbg("%s(): urb shutting down with status: %d",
|
dev_dbg(&urb->dev->dev, "%s(): urb shutting down with status: %d\n",
|
||||||
__func__, status);
|
__func__, status);
|
||||||
return;
|
return;
|
||||||
default:
|
default:
|
||||||
dbg("%s(): nonzero urb status received: %d",
|
dev_dbg(&urb->dev->dev, "%s(): nonzero urb status received: %d\n",
|
||||||
__func__, status);
|
__func__, status);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -759,8 +756,7 @@ static void oti6858_read_int_callback(struct urb *urb)
|
||||||
priv->transient = 4;
|
priv->transient = 4;
|
||||||
priv->setup_done = 0;
|
priv->setup_done = 0;
|
||||||
resubmit = 0;
|
resubmit = 0;
|
||||||
dbg("%s(): scheduling setup_line()",
|
dev_dbg(&port->dev, "%s(): scheduling setup_line()\n", __func__);
|
||||||
__func__);
|
|
||||||
schedule_delayed_work(&priv->delayed_setup_work, 0);
|
schedule_delayed_work(&priv->delayed_setup_work, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -774,8 +770,7 @@ static void oti6858_read_int_callback(struct urb *urb)
|
||||||
priv->transient = 4;
|
priv->transient = 4;
|
||||||
priv->setup_done = 0;
|
priv->setup_done = 0;
|
||||||
resubmit = 0;
|
resubmit = 0;
|
||||||
dbg("%s(): scheduling setup_line()",
|
dev_dbg(&port->dev, "%s(): scheduling setup_line()\n", __func__);
|
||||||
__func__);
|
|
||||||
schedule_delayed_work(&priv->delayed_setup_work, 0);
|
schedule_delayed_work(&priv->delayed_setup_work, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -826,7 +821,7 @@ static void oti6858_read_int_callback(struct urb *urb)
|
||||||
if (resubmit) {
|
if (resubmit) {
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
/* dbg("%s(): submitting interrupt urb", __func__); */
|
/* dev_dbg(&urb->dev->dev, "%s(): submitting interrupt urb\n", __func__); */
|
||||||
result = usb_submit_urb(urb, GFP_ATOMIC);
|
result = usb_submit_urb(urb, GFP_ATOMIC);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
dev_err(&urb->dev->dev,
|
dev_err(&urb->dev->dev,
|
||||||
|
@ -851,7 +846,7 @@ static void oti6858_read_bulk_callback(struct urb *urb)
|
||||||
spin_unlock_irqrestore(&priv->lock, flags);
|
spin_unlock_irqrestore(&priv->lock, flags);
|
||||||
|
|
||||||
if (status != 0) {
|
if (status != 0) {
|
||||||
dbg("%s(): unable to handle the error, exiting", __func__);
|
dev_dbg(&urb->dev->dev, "%s(): unable to handle the error, exiting\n", __func__);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -885,15 +880,13 @@ static void oti6858_write_bulk_callback(struct urb *urb)
|
||||||
case -ENOENT:
|
case -ENOENT:
|
||||||
case -ESHUTDOWN:
|
case -ESHUTDOWN:
|
||||||
/* this urb is terminated, clean up */
|
/* this urb is terminated, clean up */
|
||||||
dbg("%s(): urb shutting down with status: %d",
|
dev_dbg(&urb->dev->dev, "%s(): urb shutting down with status: %d\n", __func__, status);
|
||||||
__func__, status);
|
|
||||||
priv->flags.write_urb_in_use = 0;
|
priv->flags.write_urb_in_use = 0;
|
||||||
return;
|
return;
|
||||||
default:
|
default:
|
||||||
/* error in the urb, so we have to resubmit it */
|
/* error in the urb, so we have to resubmit it */
|
||||||
dbg("%s(): nonzero write bulk status received: %d",
|
dev_dbg(&urb->dev->dev, "%s(): nonzero write bulk status received: %d\n", __func__, status);
|
||||||
__func__, status);
|
dev_dbg(&urb->dev->dev, "%s(): overflow in write\n", __func__);
|
||||||
dbg("%s(): overflow in write", __func__);
|
|
||||||
|
|
||||||
port->write_urb->transfer_buffer_length = 1;
|
port->write_urb->transfer_buffer_length = 1;
|
||||||
result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
|
result = usb_submit_urb(port->write_urb, GFP_ATOMIC);
|
||||||
|
@ -908,7 +901,7 @@ static void oti6858_write_bulk_callback(struct urb *urb)
|
||||||
priv->flags.write_urb_in_use = 0;
|
priv->flags.write_urb_in_use = 0;
|
||||||
|
|
||||||
/* schedule the interrupt urb if we are still open */
|
/* schedule the interrupt urb if we are still open */
|
||||||
dbg("%s(): submitting interrupt urb", __func__);
|
dev_dbg(&port->dev, "%s(): submitting interrupt urb\n", __func__);
|
||||||
result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
|
result = usb_submit_urb(port->interrupt_in_urb, GFP_ATOMIC);
|
||||||
if (result != 0) {
|
if (result != 0) {
|
||||||
dev_err(&port->dev, "%s(): failed submitting int urb,"
|
dev_err(&port->dev, "%s(): failed submitting int urb,"
|
||||||
|
|
Loading…
Add table
Reference in a new issue