Commit ae5af710 authored by Jiri Slaby (SUSE)'s avatar Jiri Slaby (SUSE) Committed by Greg Kroah-Hartman
Browse files

tty: xtensa/iss: use u8



Switch character types to u8. To conform to characters in the rest of
the tty layer.

Signed-off-by: default avatar"Jiri Slaby (SUSE)" <jirislaby@kernel.org>
Cc: Chris Zankel <chris@zankel.net>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Link: https://lore.kernel.org/r/20231206073712.17776-28-jirislaby@kernel.org


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b49d1849
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ static void rs_poll(struct timer_list *unused)
	struct tty_port *port = &serial_port;
	int i = 0;
	int rd = 1;
	unsigned char c;
	u8 c;

	while (simc_poll(0)) {
		rd = simc_read(0, &c, 1);