diff options
Diffstat (limited to 'drivers/serial/s3c2410.c')
-rw-r--r-- | drivers/serial/s3c2410.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/serial/s3c2410.c b/drivers/serial/s3c2410.c index 95738a19cde7..8dfc2dd058ca 100644 --- a/drivers/serial/s3c2410.c +++ b/drivers/serial/s3c2410.c | |||
@@ -310,7 +310,7 @@ static int s3c24xx_serial_rx_fifocnt(struct s3c24xx_uart_port *ourport, | |||
310 | #define S3C2410_UERSTAT_PARITY (0x1000) | 310 | #define S3C2410_UERSTAT_PARITY (0x1000) |
311 | 311 | ||
312 | static irqreturn_t | 312 | static irqreturn_t |
313 | s3c24xx_serial_rx_chars(int irq, void *dev_id, struct pt_regs *regs) | 313 | s3c24xx_serial_rx_chars(int irq, void *dev_id) |
314 | { | 314 | { |
315 | struct s3c24xx_uart_port *ourport = dev_id; | 315 | struct s3c24xx_uart_port *ourport = dev_id; |
316 | struct uart_port *port = &ourport->port; | 316 | struct uart_port *port = &ourport->port; |
@@ -379,7 +379,7 @@ s3c24xx_serial_rx_chars(int irq, void *dev_id, struct pt_regs *regs) | |||
379 | flag = TTY_FRAME; | 379 | flag = TTY_FRAME; |
380 | } | 380 | } |
381 | 381 | ||
382 | if (uart_handle_sysrq_char(port, ch, regs)) | 382 | if (uart_handle_sysrq_char(port, ch)) |
383 | goto ignore_char; | 383 | goto ignore_char; |
384 | 384 | ||
385 | uart_insert_char(port, uerstat, S3C2410_UERSTAT_OVERRUN, ch, flag); | 385 | uart_insert_char(port, uerstat, S3C2410_UERSTAT_OVERRUN, ch, flag); |
@@ -393,7 +393,7 @@ s3c24xx_serial_rx_chars(int irq, void *dev_id, struct pt_regs *regs) | |||
393 | return IRQ_HANDLED; | 393 | return IRQ_HANDLED; |
394 | } | 394 | } |
395 | 395 | ||
396 | static irqreturn_t s3c24xx_serial_tx_chars(int irq, void *id, struct pt_regs *regs) | 396 | static irqreturn_t s3c24xx_serial_tx_chars(int irq, void *id) |
397 | { | 397 | { |
398 | struct s3c24xx_uart_port *ourport = id; | 398 | struct s3c24xx_uart_port *ourport = id; |
399 | struct uart_port *port = &ourport->port; | 399 | struct uart_port *port = &ourport->port; |