From mboxrd@z Thu Jan 1 00:00:00 1970 From: narmstrong@baylibre.com (Neil Armstrong) Date: Mon, 17 Apr 2017 17:29:17 +0200 Subject: [PATCH 6/6] serial: meson: change interrupt description to of node name In-Reply-To: <9fedf07e-5502-bcf6-fd97-7699659bf4ac@gmail.com> References: <9fedf07e-5502-bcf6-fd97-7699659bf4ac@gmail.com> Message-ID: <0ed2d01d-75b4-d020-5d69-7e4ca2de0149@baylibre.com> To: linus-amlogic@lists.infradead.org List-Id: linus-amlogic.lists.infradead.org On 04/16/2017 10:23 PM, Heiner Kallweit wrote: > Change interrupt description from driver name to of node name. > If multiple serial ports are enabled this allows to determine > which interrupt belongs to which port in /proc/interrupts. > > Signed-off-by: Heiner Kallweit > --- > drivers/tty/serial/meson_uart.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/tty/serial/meson_uart.c b/drivers/tty/serial/meson_uart.c > index c8b626e3..d0682231 100644 > --- a/drivers/tty/serial/meson_uart.c > +++ b/drivers/tty/serial/meson_uart.c > @@ -286,7 +286,7 @@ static int meson_uart_startup(struct uart_port *port) > writel(val, port->membase + AML_UART_MISC); > > ret = request_irq(port->irq, meson_uart_interrupt, 0, > - meson_uart_type(port), port); > + dev_name(port->dev), port); > > return ret; > } > Reviewed-by: Neil Armstrong