mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 05:45:20 +00:00
mips: msp71xx/serial: convert to pr_foo() helpers
Convert to pr_foo() helpers rather than printk(KERN_.*). Acked-by: Ralf Baechle <ralf@linux-mips.org> Acked-by: Anoop P A<Anoop_P.A@pmc-sierra.com> Acked-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Jamie Iles <jamie@jamieiles.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
583d28e92f
commit
91e8db593c
@ -65,7 +65,7 @@ void __init msp_serial_setup(void)
|
||||
up.line = 0;
|
||||
up.private_data = (void*)UART0_STATUS_REG;
|
||||
if (early_serial_setup(&up))
|
||||
printk(KERN_ERR "Early serial init of port 0 failed\n");
|
||||
pr_err("Early serial init of port 0 failed\n");
|
||||
|
||||
/* Initialize the second serial port, if one exists */
|
||||
switch (mips_machtype) {
|
||||
@ -89,5 +89,5 @@ void __init msp_serial_setup(void)
|
||||
up.line = 1;
|
||||
up.private_data = (void*)UART1_STATUS_REG;
|
||||
if (early_serial_setup(&up))
|
||||
printk(KERN_ERR "Early serial init of port 1 failed\n");
|
||||
pr_err("Early serial init of port 1 failed\n");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user