diff options
Diffstat (limited to 'drivers/char/sx.c')
-rw-r--r-- | drivers/char/sx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/sx.c b/drivers/char/sx.c index 8fd71a5fc619..5fec626598cd 100644 --- a/drivers/char/sx.c +++ b/drivers/char/sx.c | |||
@@ -1192,7 +1192,7 @@ static inline void sx_check_modem_signals (struct sx_port *port) | |||
1192 | * Small, elegant, clear. | 1192 | * Small, elegant, clear. |
1193 | */ | 1193 | */ |
1194 | 1194 | ||
1195 | static irqreturn_t sx_interrupt (int irq, void *ptr, struct pt_regs *regs) | 1195 | static irqreturn_t sx_interrupt (int irq, void *ptr) |
1196 | { | 1196 | { |
1197 | struct sx_board *board = ptr; | 1197 | struct sx_board *board = ptr; |
1198 | struct sx_port *port; | 1198 | struct sx_port *port; |
@@ -1300,7 +1300,7 @@ static void sx_pollfunc (unsigned long data) | |||
1300 | 1300 | ||
1301 | func_enter (); | 1301 | func_enter (); |
1302 | 1302 | ||
1303 | sx_interrupt (0, board, NULL); | 1303 | sx_interrupt (0, board); |
1304 | 1304 | ||
1305 | init_timer(&board->timer); | 1305 | init_timer(&board->timer); |
1306 | 1306 | ||