diff options
Diffstat (limited to 'drivers/serial/clps711x.c')
-rw-r--r-- | drivers/serial/clps711x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/serial/clps711x.c b/drivers/serial/clps711x.c index f27d852ce50d..598012714882 100644 --- a/drivers/serial/clps711x.c +++ b/drivers/serial/clps711x.c | |||
@@ -93,7 +93,7 @@ static void clps711xuart_enable_ms(struct uart_port *port) | |||
93 | { | 93 | { |
94 | } | 94 | } |
95 | 95 | ||
96 | static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id, struct pt_regs *regs) | 96 | static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id) |
97 | { | 97 | { |
98 | struct uart_port *port = dev_id; | 98 | struct uart_port *port = dev_id; |
99 | struct tty_struct *tty = port->info->tty; | 99 | struct tty_struct *tty = port->info->tty; |
@@ -131,7 +131,7 @@ static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id, struct pt_regs *re | |||
131 | #endif | 131 | #endif |
132 | } | 132 | } |
133 | 133 | ||
134 | if (uart_handle_sysrq_char(port, ch, regs)) | 134 | if (uart_handle_sysrq_char(port, ch)) |
135 | goto ignore_char; | 135 | goto ignore_char; |
136 | 136 | ||
137 | /* | 137 | /* |
@@ -147,7 +147,7 @@ static irqreturn_t clps711xuart_int_rx(int irq, void *dev_id, struct pt_regs *re | |||
147 | return IRQ_HANDLED; | 147 | return IRQ_HANDLED; |
148 | } | 148 | } |
149 | 149 | ||
150 | static irqreturn_t clps711xuart_int_tx(int irq, void *dev_id, struct pt_regs *regs) | 150 | static irqreturn_t clps711xuart_int_tx(int irq, void *dev_id) |
151 | { | 151 | { |
152 | struct uart_port *port = dev_id; | 152 | struct uart_port *port = dev_id; |
153 | struct circ_buf *xmit = &port->info->xmit; | 153 | struct circ_buf *xmit = &port->info->xmit; |