diff options
author | Jeff Garzik <jeff@garzik.org> | 2006-10-05 21:03:43 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-10-05 21:03:43 -0400 |
commit | 4ad99f15c6a3cadf36928c399459ea4fdb3d49f9 (patch) | |
tree | d0536e4da737900fa27b235f175a3d179d692200 /drivers/char/hvcs.c | |
parent | 46767aeba58ca9357a2309765201bad38d8f5e9b (diff) | |
parent | 44aefd2706bb6f5b65ba2c38cd89e7609e2b43d3 (diff) |
Merge branch 'master' into upstream-fixes
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 | ||