diff options
| author | Jiri Slaby <jslaby@suse.cz> | 2012-11-15 09:49:51 +0100 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-11-15 17:20:57 -0800 | 
| commit | 9753eb8de8a36de41f3b5e217e995cccfbecdada (patch) | |
| tree | 3d0d6f1c02ddb41cf262a7bb2aca2af89dc0f889 /drivers/mmc/card | |
| parent | 55bef83cc68bda76a14a23b1076a9a9a9e43af68 (diff) | |
| download | linux-9753eb8de8a36de41f3b5e217e995cccfbecdada.tar.bz2 | |
MMC: sdio_uart, remove unused member from sdio_uart_port
tty from struct sdio_uart_port is unused. Proper refcounted tty in
tty_port->tty is used instead. So remove the member from that
structure.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/mmc/card')
| -rw-r--r-- | drivers/mmc/card/sdio_uart.c | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/drivers/mmc/card/sdio_uart.c b/drivers/mmc/card/sdio_uart.c index d2339ea37815..369f7ba1d216 100644 --- a/drivers/mmc/card/sdio_uart.c +++ b/drivers/mmc/card/sdio_uart.c @@ -67,7 +67,6 @@ struct uart_icount {  struct sdio_uart_port {  	struct tty_port		port;  	struct kref		kref; -	struct tty_struct	*tty;  	unsigned int		index;  	struct sdio_func	*func;  	struct mutex		func_lock; |