diff options
Diffstat (limited to 'drivers/char/ser_a2232.c')
-rw-r--r-- | drivers/char/ser_a2232.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/ser_a2232.c b/drivers/char/ser_a2232.c index 65c751d0d643..4217d38caef9 100644 --- a/drivers/char/ser_a2232.c +++ b/drivers/char/ser_a2232.c | |||
@@ -111,7 +111,7 @@ | |||
111 | 111 | ||
112 | /***************************** Prototypes ***************************/ | 112 | /***************************** Prototypes ***************************/ |
113 | /* The interrupt service routine */ | 113 | /* The interrupt service routine */ |
114 | static irqreturn_t a2232_vbl_inter(int irq, void *data, struct pt_regs *fp); | 114 | static irqreturn_t a2232_vbl_inter(int irq, void *data); |
115 | /* Initialize the port structures */ | 115 | /* Initialize the port structures */ |
116 | static void a2232_init_portstructs(void); | 116 | static void a2232_init_portstructs(void); |
117 | /* Initialize and register TTY drivers. */ | 117 | /* Initialize and register TTY drivers. */ |
@@ -504,7 +504,7 @@ static int a2232_open(struct tty_struct * tty, struct file * filp) | |||
504 | } | 504 | } |
505 | /*** END OF FUNCTIONS EXPECTED BY TTY DRIVER STRUCTS ***/ | 505 | /*** END OF FUNCTIONS EXPECTED BY TTY DRIVER STRUCTS ***/ |
506 | 506 | ||
507 | static irqreturn_t a2232_vbl_inter(int irq, void *data, struct pt_regs *fp) | 507 | static irqreturn_t a2232_vbl_inter(int irq, void *data) |
508 | { | 508 | { |
509 | #if A2232_IOBUFLEN != 256 | 509 | #if A2232_IOBUFLEN != 256 |
510 | #error "Re-Implement a2232_vbl_inter()!" | 510 | #error "Re-Implement a2232_vbl_inter()!" |