Skip to content

Commit 3f35692

Browse files
tklausergregkh
authored andcommitted
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>
1 parent 2bcacc1 commit 3f35692

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/tty/serial/altera_jtaguart.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ static int altera_jtaguart_startup(struct uart_port *port)
175175
ret = request_irq(port->irq, altera_jtaguart_interrupt, 0,
176176
DRV_NAME, port);
177177
if (ret) {
178-
dev_err(port->dev, "unable to attach Altera JTAG UART %d "
179-
"interrupt vector=%d\n", port->line, port->irq);
178+
dev_err(port->dev, "unable to attach Altera JTAG UART %d interrupt vector=%d\n",
179+
port->line, port->irq);
180180
return ret;
181181
}
182182

0 commit comments

Comments
 (0)