summaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/altera_uart.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2024-10-29 14:02:58 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-11-04 02:01:44 +0100
commit2ac661dfdfd0241919894335a1057df016f1dea3 (patch)
treec542dbde22e6305156e98ebd31f6c6e61b1638c8 /drivers/tty/serial/altera_uart.c
parentkfifo: don't include dma-mapping.h in kfifo.h (diff)
downloadlinux-2ac661dfdfd0241919894335a1057df016f1dea3.tar.xz
linux-2ac661dfdfd0241919894335a1057df016f1dea3.zip
altera_uart: Use dev_err() to report error attaching IRQ handler
In case of multiple Altera UART ports available on the system, the error message will contain information about the port for which attaching the IRQ handler failed. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Reviewed-by: Jiri Slaby <jirislaby@kernel.org> Link: https://lore.kernel.org/r/20241029130258.4679-1-tklauser@distanz.ch Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/altera_uart.c')
-rw-r--r--drivers/tty/serial/altera_uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/altera_uart.c b/drivers/tty/serial/altera_uart.c
index 8eed2542627e..1da9cd465426 100644
--- a/drivers/tty/serial/altera_uart.c
+++ b/drivers/tty/serial/altera_uart.c
@@ -307,7 +307,7 @@ static int altera_uart_startup(struct uart_port *port)
ret = request_irq(port->irq, altera_uart_interrupt, 0,
dev_name(port->dev), port);
if (ret) {
- pr_err(DRV_NAME ": unable to attach Altera UART %d "
+ dev_err(port->dev, "unable to attach Altera UART %d "
"interrupt vector=%d\n", port->line, port->irq);
return ret;
}