diff options
Diffstat (limited to 'drivers/tty/hvc/hvcs.c')
-rw-r--r-- | drivers/tty/hvc/hvcs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/hvc/hvcs.c b/drivers/tty/hvc/hvcs.c index 81ff7e1bfb1a..f7ff97c0ad34 100644 --- a/drivers/tty/hvc/hvcs.c +++ b/drivers/tty/hvc/hvcs.c | |||
@@ -1044,8 +1044,8 @@ static int hvcs_enable_device(struct hvcs_struct *hvcsd, uint32_t unit_address, | |||
1044 | * It is possible that the vty-server was removed between the time that | 1044 | * It is possible that the vty-server was removed between the time that |
1045 | * the conn was registered and now. | 1045 | * the conn was registered and now. |
1046 | */ | 1046 | */ |
1047 | if (!(rc = request_irq(irq, &hvcs_handle_interrupt, | 1047 | rc = request_irq(irq, &hvcs_handle_interrupt, 0, "ibmhvcs", hvcsd); |
1048 | 0, "ibmhvcs", hvcsd))) { | 1048 | if (!rc) { |
1049 | /* | 1049 | /* |
1050 | * It is possible the vty-server was removed after the irq was | 1050 | * It is possible the vty-server was removed after the irq was |
1051 | * requested but before we have time to enable interrupts. | 1051 | * requested but before we have time to enable interrupts. |