diff options
Diffstat (limited to 'drivers/char/hvc_console.c')
-rw-r--r-- | drivers/char/hvc_console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/hvc_console.c b/drivers/char/hvc_console.c index 4053d1cd393f..9902ffad3b12 100644 --- a/drivers/char/hvc_console.c +++ b/drivers/char/hvc_console.c | |||
@@ -294,7 +294,7 @@ static int hvc_poll(struct hvc_struct *hp); | |||
294 | * NOTE: This API isn't used if the console adapter doesn't support interrupts. | 294 | * NOTE: This API isn't used if the console adapter doesn't support interrupts. |
295 | * In this case the console is poll driven. | 295 | * In this case the console is poll driven. |
296 | */ | 296 | */ |
297 | static irqreturn_t hvc_handle_interrupt(int irq, void *dev_instance, struct pt_regs *regs) | 297 | static irqreturn_t hvc_handle_interrupt(int irq, void *dev_instance) |
298 | { | 298 | { |
299 | /* if hvc_poll request a repoll, then kick the hvcd thread */ | 299 | /* if hvc_poll request a repoll, then kick the hvcd thread */ |
300 | if (hvc_poll(dev_instance)) | 300 | if (hvc_poll(dev_instance)) |
@@ -621,7 +621,7 @@ static int hvc_poll(struct hvc_struct *hp) | |||
621 | sysrq_pressed = 1; | 621 | sysrq_pressed = 1; |
622 | continue; | 622 | continue; |
623 | } else if (sysrq_pressed) { | 623 | } else if (sysrq_pressed) { |
624 | handle_sysrq(buf[i], NULL, tty); | 624 | handle_sysrq(buf[i], tty); |
625 | sysrq_pressed = 0; | 625 | sysrq_pressed = 0; |
626 | continue; | 626 | continue; |
627 | } | 627 | } |