diff options
author | Alan Cox <alan@linux.intel.com> | 2009-09-19 16:13:28 -0400 |
---|---|---|
committer | Live-CD User <linux@linux.site> | 2009-09-19 16:13:28 -0400 |
commit | ebd2c8f6d2ec4012c267ecb95e72a57b8355a705 (patch) | |
tree | 36a01b2ac2520bf7e0d9362b8da17d3c894da2db /drivers/serial/atmel_serial.c | |
parent | 11d85d7b2ecc72fe752bba55389e7d11907528af (diff) |
serial: kill off uart_info
We moved this into uart_state, now move the fields out of the separate
structure and kill it off.
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/serial/atmel_serial.c')
-rw-r--r-- | drivers/serial/atmel_serial.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/serial/atmel_serial.c b/drivers/serial/atmel_serial.c index 607d43a31048..963e3c12af41 100644 --- a/drivers/serial/atmel_serial.c +++ b/drivers/serial/atmel_serial.c | |||
@@ -427,7 +427,7 @@ static void atmel_rx_chars(struct uart_port *port) | |||
427 | */ | 427 | */ |
428 | static void atmel_tx_chars(struct uart_port *port) | 428 | static void atmel_tx_chars(struct uart_port *port) |
429 | { | 429 | { |
430 | struct circ_buf *xmit = &port->info->xmit; | 430 | struct circ_buf *xmit = &port->state->xmit; |
431 | 431 | ||
432 | if (port->x_char && UART_GET_CSR(port) & ATMEL_US_TXRDY) { | 432 | if (port->x_char && UART_GET_CSR(port) & ATMEL_US_TXRDY) { |
433 | UART_PUT_CHAR(port, port->x_char); | 433 | UART_PUT_CHAR(port, port->x_char); |
@@ -560,7 +560,7 @@ static irqreturn_t atmel_interrupt(int irq, void *dev_id) | |||
560 | static void atmel_tx_dma(struct uart_port *port) | 560 | static void atmel_tx_dma(struct uart_port *port) |
561 | { | 561 | { |
562 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); | 562 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); |
563 | struct circ_buf *xmit = &port->info->xmit; | 563 | struct circ_buf *xmit = &port->state->xmit; |
564 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; | 564 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; |
565 | int count; | 565 | int count; |
566 | 566 | ||
@@ -663,14 +663,14 @@ static void atmel_rx_from_ring(struct uart_port *port) | |||
663 | * uart_start(), which takes the lock. | 663 | * uart_start(), which takes the lock. |
664 | */ | 664 | */ |
665 | spin_unlock(&port->lock); | 665 | spin_unlock(&port->lock); |
666 | tty_flip_buffer_push(port->info->port.tty); | 666 | tty_flip_buffer_push(port->state->port.tty); |
667 | spin_lock(&port->lock); | 667 | spin_lock(&port->lock); |
668 | } | 668 | } |
669 | 669 | ||
670 | static void atmel_rx_from_dma(struct uart_port *port) | 670 | static void atmel_rx_from_dma(struct uart_port *port) |
671 | { | 671 | { |
672 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); | 672 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); |
673 | struct tty_struct *tty = port->info->port.tty; | 673 | struct tty_struct *tty = port->state->port.tty; |
674 | struct atmel_dma_buffer *pdc; | 674 | struct atmel_dma_buffer *pdc; |
675 | int rx_idx = atmel_port->pdc_rx_idx; | 675 | int rx_idx = atmel_port->pdc_rx_idx; |
676 | unsigned int head; | 676 | unsigned int head; |
@@ -776,7 +776,7 @@ static void atmel_tasklet_func(unsigned long data) | |||
776 | if (status_change & ATMEL_US_CTS) | 776 | if (status_change & ATMEL_US_CTS) |
777 | uart_handle_cts_change(port, !(status & ATMEL_US_CTS)); | 777 | uart_handle_cts_change(port, !(status & ATMEL_US_CTS)); |
778 | 778 | ||
779 | wake_up_interruptible(&port->info->delta_msr_wait); | 779 | wake_up_interruptible(&port->state->delta_msr_wait); |
780 | 780 | ||
781 | atmel_port->irq_status_prev = status; | 781 | atmel_port->irq_status_prev = status; |
782 | } | 782 | } |
@@ -795,7 +795,7 @@ static void atmel_tasklet_func(unsigned long data) | |||
795 | static int atmel_startup(struct uart_port *port) | 795 | static int atmel_startup(struct uart_port *port) |
796 | { | 796 | { |
797 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); | 797 | struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); |
798 | struct tty_struct *tty = port->info->port.tty; | 798 | struct tty_struct *tty = port->state->port.tty; |
799 | int retval; | 799 | int retval; |
800 | 800 | ||
801 | /* | 801 | /* |
@@ -854,7 +854,7 @@ static int atmel_startup(struct uart_port *port) | |||
854 | } | 854 | } |
855 | if (atmel_use_dma_tx(port)) { | 855 | if (atmel_use_dma_tx(port)) { |
856 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; | 856 | struct atmel_dma_buffer *pdc = &atmel_port->pdc_tx; |
857 | struct circ_buf *xmit = &port->info->xmit; | 857 | struct circ_buf *xmit = &port->state->xmit; |
858 | 858 | ||
859 | pdc->buf = xmit->buf; | 859 | pdc->buf = xmit->buf; |
860 | pdc->dma_addr = dma_map_single(port->dev, | 860 | pdc->dma_addr = dma_map_single(port->dev, |