Using dev_info() instead of printk() for more consistent output. (prints device name, etc). Signed-off-by: Enrico Weigelt <info@xxxxxxxxx> --- drivers/tty/serial/sunzilog.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/tty/serial/sunzilog.c b/drivers/tty/serial/sunzilog.c index bc7af8b..6285bba 100644 --- a/drivers/tty/serial/sunzilog.c +++ b/drivers/tty/serial/sunzilog.c @@ -1489,14 +1489,12 @@ static int zs_probe(struct platform_device *op) } uart_inst++; } else { - printk(KERN_INFO "%s: Keyboard at MMIO 0x%llx (irq = %d) " + dev_info(&op->dev, "Keyboard at MMIO 0x%llx (irq = %d) " "is a %s\n", - dev_name(&op->dev), (unsigned long long) up[0].port.mapbase, op->archdata.irqs[0], sunzilog_type(&up[0].port)); - printk(KERN_INFO "%s: Mouse at MMIO 0x%llx (irq = %d) " + dev_info(&op->dev, "Mouse at MMIO 0x%llx (irq = %d) " "is a %s\n", - dev_name(&op->dev), (unsigned long long) up[1].port.mapbase, op->archdata.irqs[0], sunzilog_type(&up[1].port)); kbm_inst++; -- 1.9.1