Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d9c9948 authored by Al Viro's avatar Al Viro Committed by David S. Miller
Browse files

[SUNSU]: Compile fixes.



sunsu had been broken by ->stop_tx/->start_tx API changes.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e5e25946
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -269,7 +269,10 @@ static void sunsu_stop_tx(struct uart_port *port)

	__stop_tx(up);

	if (up->port.type == PORT_16C950 && tty_stop /*FIXME*/) {
	/*
	 * We really want to stop the transmitter from sending.
	 */
	if (up->port.type == PORT_16C950) {
		up->acr |= UART_ACR_TXDIS;
		serial_icr_write(up, UART_ACR, up->acr);
	}
@@ -283,10 +286,11 @@ static void sunsu_start_tx(struct uart_port *port)
		up->ier |= UART_IER_THRI;
		serial_out(up, UART_IER, up->ier);
	}

	/*
	 * We only do this from uart_start
	 * Re-enable the transmitter if we disabled it.
	 */
	if (tty_start && up->port.type == PORT_16C950 /*FIXME*/) {
	if (up->port.type == PORT_16C950 && up->acr & UART_ACR_TXDIS) {
		up->acr &= ~UART_ACR_TXDIS;
		serial_icr_write(up, UART_ACR, up->acr);
	}