projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17a6921
)
bcm63xx_uart: Use the device name when registering an interrupt
author
Simon Arlott
<simon@fire.lp0.eu>
Sun, 15 Nov 2015 16:14:32 +0000
(16:14 +0000)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 21 Nov 2015 00:19:54 +0000
(16:19 -0800)
Use the device name when registering an interrupt so that multiple
ports don't all have the same interrupt name.
Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/bcm63xx_uart.c
patch
|
blob
|
history
diff --git
a/drivers/tty/serial/bcm63xx_uart.c
b/drivers/tty/serial/bcm63xx_uart.c
index 681e0f3d5e0ef895b0f618a24a40cf138f8f0eca..a1c0a89d9c7f3cfcfd994477e7e7e69aa1755d04 100644
(file)
--- a/
drivers/tty/serial/bcm63xx_uart.c
+++ b/
drivers/tty/serial/bcm63xx_uart.c
@@
-474,7
+474,7
@@
static int bcm_uart_startup(struct uart_port *port)
/* register irq and enable rx interrupts */
ret = request_irq(port->irq, bcm_uart_interrupt, 0,
-
bcm_uart_type(port
), port);
+
dev_name(port->dev
), port);
if (ret)
return ret;
bcm_uart_writel(port, UART_RX_INT_MASK, UART_IR_REG);