Skip to content

Commit

Permalink
USB: ch341: replace printk warnings with dev_err
Browse files Browse the repository at this point in the history
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed Mar 2, 2010
1 parent 8811426 commit 6a9b15f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/usb/serial/ch341.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,8 @@ static void ch341_break_ctl(struct tty_struct *tty, int break_state)
r = ch341_control_in(port->serial->dev, CH341_REQ_READ_REG,
ch341_break_reg, 0, break_reg, sizeof(break_reg));
if (r < 0) {
printk(KERN_WARNING "%s: USB control read error whilst getting"
" break register contents.\n", __FILE__);
dev_err(&port->dev, "%s - USB control read error (%d)\n",
__func__, r);
return;
}
dbg("%s - initial ch341 break register contents - reg1: %x, reg2: %x",
Expand All @@ -420,8 +420,8 @@ static void ch341_break_ctl(struct tty_struct *tty, int break_state)
r = ch341_control_out(port->serial->dev, CH341_REQ_WRITE_REG,
ch341_break_reg, reg_contents);
if (r < 0)
printk(KERN_WARNING "%s: USB control write error whilst setting"
" break register contents.\n", __FILE__);
dev_err(&port->dev, "%s - USB control write error (%d)\n",
__func__, r);
}

static int ch341_tiocmset(struct tty_struct *tty, struct file *file,
Expand Down

0 comments on commit 6a9b15f

Please sign in to comment.