Skip to content

Commit ae5af71

Browse files
Jiri Slaby (SUSE)gregkh
authored andcommitted
tty: xtensa/iss: use u8
Switch character types to u8. To conform to characters in the rest of the tty layer. Signed-off-by: "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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent b49d184 commit ae5af71

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/xtensa/platforms/iss/console.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static void rs_poll(struct timer_list *unused)
6565
struct tty_port *port = &serial_port;
6666
int i = 0;
6767
int rd = 1;
68-
unsigned char c;
68+
u8 c;
6969

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

0 commit comments

Comments
 (0)