aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomoya MORINAGA <tomoya.rohm@gmail.com>2012-03-26 01:43:00 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-04-09 15:08:41 -0400
commit44db113212d86a5870c2bfe8fb767fa842d68805 (patch)
tree465383fcfaf5faae3ed0c307d22d38d084bfb6d2
parentf997a01e3272f08cbbf77392b846878332dafc22 (diff)
pch_uart: Delete unused structure member
Signed-off-by: Tomoya MORINAGA <tomoya.rohm@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/pch_uart.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c
index 08b9962b8fda..110595ed33f5 100644
--- a/drivers/tty/serial/pch_uart.c
+++ b/drivers/tty/serial/pch_uart.c
@@ -236,7 +236,6 @@ struct eg20t_port {
236 unsigned int fcr; 236 unsigned int fcr;
237 unsigned int mcr; 237 unsigned int mcr;
238 unsigned int use_dma; 238 unsigned int use_dma;
239 unsigned int use_dma_flag;
240 struct dma_async_tx_descriptor *desc_tx; 239 struct dma_async_tx_descriptor *desc_tx;
241 struct dma_async_tx_descriptor *desc_rx; 240 struct dma_async_tx_descriptor *desc_rx;
242 struct pch_dma_slave param_tx; 241 struct pch_dma_slave param_tx;
@@ -1441,7 +1440,6 @@ static int pch_uart_verify_port(struct uart_port *port,
1441 return -EOPNOTSUPP; 1440 return -EOPNOTSUPP;
1442#endif 1441#endif
1443 priv->use_dma = 1; 1442 priv->use_dma = 1;
1444 priv->use_dma_flag = 1;
1445 dev_info(priv->port.dev, "PCH UART : Use DMA Mode\n"); 1443 dev_info(priv->port.dev, "PCH UART : Use DMA Mode\n");
1446 } 1444 }
1447 1445