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

Commit 00a135b3 authored by Vineet Gupta's avatar Vineet Gupta Committed by Greg Kroah-Hartman
Browse files

serial/arc-uart: Remove the goto/label



Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
Cc: Mischa Jonker <mjonker@synopsys.com>
Cc: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5284eba7
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -248,12 +248,9 @@ static void arc_serial_rx_chars(struct arc_uart_port *uart, unsigned int status)
		ch = UART_GET_DATA(uart);
		uart->port.icount.rx++;

		if (unlikely(uart_handle_sysrq_char(&uart->port, ch)))
			goto done;

		if (!(uart_handle_sysrq_char(&uart->port, ch)))
			uart_insert_char(&uart->port, status, RXOERR, ch, flg);

done:
		tty_flip_buffer_push(&uart->port.state->port);
	} while (!((status = UART_GET_STATUS(uart)) & RXEMPTY));
}