diff options
Diffstat (limited to 'drivers/char/hvcs.c')
-rw-r--r-- | drivers/char/hvcs.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/char/hvcs.c b/drivers/char/hvcs.c index 0b89bcde8c52..8728255c9463 100644 --- a/drivers/char/hvcs.c +++ b/drivers/char/hvcs.c | |||
@@ -313,8 +313,7 @@ static DEFINE_SPINLOCK(hvcs_structs_lock); | |||
313 | 313 | ||
314 | static void hvcs_unthrottle(struct tty_struct *tty); | 314 | static void hvcs_unthrottle(struct tty_struct *tty); |
315 | static void hvcs_throttle(struct tty_struct *tty); | 315 | static void hvcs_throttle(struct tty_struct *tty); |
316 | static irqreturn_t hvcs_handle_interrupt(int irq, void *dev_instance, | 316 | static irqreturn_t hvcs_handle_interrupt(int irq, void *dev_instance); |
317 | struct pt_regs *regs); | ||
318 | 317 | ||
319 | static int hvcs_write(struct tty_struct *tty, | 318 | static int hvcs_write(struct tty_struct *tty, |
320 | const unsigned char *buf, int count); | 319 | const unsigned char *buf, int count); |
@@ -387,8 +386,7 @@ static void hvcs_throttle(struct tty_struct *tty) | |||
387 | * handler taking any further interrupts because they are disabled which means | 386 | * handler taking any further interrupts because they are disabled which means |
388 | * the hvcs_struct will always be valid in this handler. | 387 | * the hvcs_struct will always be valid in this handler. |
389 | */ | 388 | */ |
390 | static irqreturn_t hvcs_handle_interrupt(int irq, void *dev_instance, | 389 | static irqreturn_t hvcs_handle_interrupt(int irq, void *dev_instance) |
391 | struct pt_regs *regs) | ||
392 | { | 390 | { |
393 | struct hvcs_struct *hvcsd = dev_instance; | 391 | struct hvcs_struct *hvcsd = dev_instance; |
394 | 392 | ||