Commit b3a882e8 authored by Tobias Klauser's avatar Tobias Klauser Committed by Greg Kroah-Hartman
Browse files

tty/serial/altera_uart: unwrap error log string

parent 3f356922
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -307,8 +307,8 @@ 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) {
			dev_err(port->dev, "unable to attach Altera UART %d "
			       "interrupt vector=%d\n", port->line, port->irq);
			dev_err(port->dev, "unable to attach Altera UART %d interrupt vector=%d\n",
				port->line, port->irq);
			return ret;
		}
	}