diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2006-12-08 05:38:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:54 -0500 |
commit | b1d1c8dd35aa95fbeb7051eee9811fc2475a81f4 (patch) | |
tree | a98b50a10c449e4dcd39eb895d2f093c521ed3c5 /drivers/char/mxser_new.c | |
parent | e079f495b77726fafb77dd531873ec0daac34078 (diff) |
[PATCH] Char: mxser_new, correct intr handler proto
Prototype of the driver's interrupt handler is old-fashioned, past changes
tell us, we won't get pt_regs as the 3rd argument. There are only 2 params.
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/mxser_new.c')
-rw-r--r-- | drivers/char/mxser_new.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/mxser_new.c b/drivers/char/mxser_new.c index a3328bb147b9..7709cd865fff 100644 --- a/drivers/char/mxser_new.c +++ b/drivers/char/mxser_new.c | |||
@@ -2265,7 +2265,7 @@ unlock: | |||
2265 | /* | 2265 | /* |
2266 | * This is the serial driver's generic interrupt routine | 2266 | * This is the serial driver's generic interrupt routine |
2267 | */ | 2267 | */ |
2268 | static irqreturn_t mxser_interrupt(int irq, void *dev_id, struct pt_regs *regs) | 2268 | static irqreturn_t mxser_interrupt(int irq, void *dev_id) |
2269 | { | 2269 | { |
2270 | int status, iir, i; | 2270 | int status, iir, i; |
2271 | struct mxser_board *brd = NULL; | 2271 | struct mxser_board *brd = NULL; |