diff options
Diffstat (limited to 'drivers/char/specialix.c')
-rw-r--r-- | drivers/char/specialix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/char/specialix.c b/drivers/char/specialix.c index 902c48dca3bc..d0b88d0e87fd 100644 --- a/drivers/char/specialix.c +++ b/drivers/char/specialix.c | |||
@@ -200,7 +200,7 @@ static struct specialix_port sx_port[SX_NBOARD * SX_NPORT]; | |||
200 | 200 | ||
201 | #ifdef SPECIALIX_TIMER | 201 | #ifdef SPECIALIX_TIMER |
202 | static struct timer_list missed_irq_timer; | 202 | static struct timer_list missed_irq_timer; |
203 | static irqreturn_t sx_interrupt(int irq, void * dev_id, struct pt_regs * regs); | 203 | static irqreturn_t sx_interrupt(int irq, void * dev_id); |
204 | #endif | 204 | #endif |
205 | 205 | ||
206 | 206 | ||
@@ -897,7 +897,7 @@ static inline void sx_check_modem(struct specialix_board * bp) | |||
897 | 897 | ||
898 | 898 | ||
899 | /* The main interrupt processing routine */ | 899 | /* The main interrupt processing routine */ |
900 | static irqreturn_t sx_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 900 | static irqreturn_t sx_interrupt(int irq, void *dev_id) |
901 | { | 901 | { |
902 | unsigned char status; | 902 | unsigned char status; |
903 | unsigned char ack; | 903 | unsigned char ack; |
@@ -912,7 +912,7 @@ static irqreturn_t sx_interrupt(int irq, void *dev_id, struct pt_regs *regs) | |||
912 | spin_lock_irqsave(&bp->lock, flags); | 912 | spin_lock_irqsave(&bp->lock, flags); |
913 | 913 | ||
914 | dprintk (SX_DEBUG_FLOW, "enter %s port %d room: %ld\n", __FUNCTION__, port_No(sx_get_port(bp, "INT")), SERIAL_XMIT_SIZE - sx_get_port(bp, "ITN")->xmit_cnt - 1); | 914 | dprintk (SX_DEBUG_FLOW, "enter %s port %d room: %ld\n", __FUNCTION__, port_No(sx_get_port(bp, "INT")), SERIAL_XMIT_SIZE - sx_get_port(bp, "ITN")->xmit_cnt - 1); |
915 | if (!bp || !(bp->flags & SX_BOARD_ACTIVE)) { | 915 | if (!(bp->flags & SX_BOARD_ACTIVE)) { |
916 | dprintk (SX_DEBUG_IRQ, "sx: False interrupt. irq %d.\n", irq); | 916 | dprintk (SX_DEBUG_IRQ, "sx: False interrupt. irq %d.\n", irq); |
917 | spin_unlock_irqrestore(&bp->lock, flags); | 917 | spin_unlock_irqrestore(&bp->lock, flags); |
918 | func_exit(); | 918 | func_exit(); |