aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-18 12:05:37 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-18 12:05:37 -0400
commit788a661a9fa59740984f509832cae33dde4b0329 (patch)
treef5246928bab6098878daed7087eb449e66aea4d5
parent6c27ad83ace843d339f7893a4af0b65cdfeb130c (diff)
USB: serial: quatech2: fix up unneeded printk() call
It should be calling dev_err() instead of printk(KERN_INFO...) so this change fixes that up properly. Cc: Bill Pemberton <wfp5p@virginia.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/serial/quatech2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/quatech2.c b/drivers/usb/serial/quatech2.c
index e60f27babe46..c1024b168bba 100644
--- a/drivers/usb/serial/quatech2.c
+++ b/drivers/usb/serial/quatech2.c
@@ -1087,7 +1087,7 @@ static int qt2_write(struct tty_struct *tty,
1087 data = write_urb->transfer_buffer; 1087 data = write_urb->transfer_buffer;
1088 spin_lock_irqsave(&port_priv->urb_lock, flags); 1088 spin_lock_irqsave(&port_priv->urb_lock, flags);
1089 if (port_priv->urb_in_use == true) { 1089 if (port_priv->urb_in_use == true) {
1090 printk(KERN_INFO "qt2_write - urb is in use\n"); 1090 dev_err(&port->dev, "qt2_write - urb is in use\n");
1091 goto write_out; 1091 goto write_out;
1092 } 1092 }
1093 1093