From 6b59160c5e8579703cfa45a0bc53ded320ec5e46 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 15 Mar 2019 21:00:31 +0100 Subject: [PATCH] drivers: tty: serial: sunzilog: use dev_info() instead of printk() Using dev_info() instead of printk() for more consistent output. (prints device name, etc). Signed-off-by: Enrico Weigelt --- 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 bc7af8b08a72ab..6285bba2e548fa 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++;