mirror of https://gitee.com/openkylin/linux.git
tty/serial: at91: use dev_err instead of printk
For better consistency. Signed-off-by: Richard Genoud <richard.genoud@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
723abd87f6
commit
ddaa603739
|
@ -1555,7 +1555,7 @@ static int atmel_startup(struct uart_port *port)
|
|||
retval = request_irq(port->irq, atmel_interrupt, IRQF_SHARED,
|
||||
tty ? tty->name : "atmel_serial", port);
|
||||
if (retval) {
|
||||
printk("atmel_serial: atmel_startup - Can't get irq\n");
|
||||
dev_err(port->dev, "atmel_startup - Can't get irq\n");
|
||||
return retval;
|
||||
}
|
||||
|
||||
|
@ -1738,7 +1738,7 @@ static void atmel_serial_pm(struct uart_port *port, unsigned int state,
|
|||
clk_disable_unprepare(atmel_port->clk);
|
||||
break;
|
||||
default:
|
||||
printk(KERN_ERR "atmel_serial: unknown pm %d\n", state);
|
||||
dev_err(port->dev, "atmel_serial: unknown pm %d\n", state);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue