mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
tty/serial/altera_jtaguart: unwrap error log string
The error log string should be a single line, unwrap it. Suggested-by: Jiri Slaby <jirislaby@kernel.org> Link: https://lore.kernel.org/all/26034117-26b6-4eeb-bd66-969955b70e9b@kernel.org/ Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Link: https://lore.kernel.org/r/20241113114330.16995-1-tklauser@distanz.ch Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2bcacc1c87
commit
3f356922d4
1 changed files with 2 additions and 2 deletions
|
@ -175,8 +175,8 @@ static int altera_jtaguart_startup(struct uart_port *port)
|
|||
ret = request_irq(port->irq, altera_jtaguart_interrupt, 0,
|
||||
DRV_NAME, port);
|
||||
if (ret) {
|
||||
dev_err(port->dev, "unable to attach Altera JTAG UART %d "
|
||||
"interrupt vector=%d\n", port->line, port->irq);
|
||||
dev_err(port->dev, "unable to attach Altera JTAG UART %d interrupt vector=%d\n",
|
||||
port->line, port->irq);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue