diff options
Diffstat (limited to 'drivers/mmc/core/sdio_uart.c')
| -rw-r--r-- | drivers/mmc/core/sdio_uart.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mmc/core/sdio_uart.c b/drivers/mmc/core/sdio_uart.c index 50536fe59f1a..aa659758563f 100644 --- a/drivers/mmc/core/sdio_uart.c +++ b/drivers/mmc/core/sdio_uart.c @@ -478,13 +478,13 @@ static void sdio_uart_check_modem_status(struct sdio_uart_port *port)  			int cts = (status & UART_MSR_CTS);  			if (tty->hw_stopped) {  				if (cts) { -					tty->hw_stopped = 0; +					tty->hw_stopped = false;  					sdio_uart_start_tx(port);  					tty_wakeup(tty);  				}  			} else {  				if (!cts) { -					tty->hw_stopped = 1; +					tty->hw_stopped = true;  					sdio_uart_stop_tx(port);  				}  			} @@ -633,7 +633,7 @@ static int sdio_uart_activate(struct tty_port *tport, struct tty_struct *tty)  	if (C_CRTSCTS(tty))  		if (!(sdio_uart_get_mctrl(port) & TIOCM_CTS)) -			tty->hw_stopped = 1; +			tty->hw_stopped = true;  	clear_bit(TTY_IO_ERROR, &tty->flags); @@ -882,14 +882,14 @@ static void sdio_uart_set_termios(struct tty_struct *tty,  	/* Handle turning off CRTSCTS */  	if ((old_termios->c_cflag & CRTSCTS) && !(cflag & CRTSCTS)) { -		tty->hw_stopped = 0; +		tty->hw_stopped = false;  		sdio_uart_start_tx(port);  	}  	/* Handle turning on CRTSCTS */  	if (!(old_termios->c_cflag & CRTSCTS) && (cflag & CRTSCTS)) {  		if (!(sdio_uart_get_mctrl(port) & TIOCM_CTS)) { -			tty->hw_stopped = 1; +			tty->hw_stopped = true;  			sdio_uart_stop_tx(port);  		}  	}  |