diff options
| -rw-r--r-- | drivers/s390/char/tty3270.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/drivers/s390/char/tty3270.c b/drivers/s390/char/tty3270.c index c1f2adefad41..5043150019ac 100644 --- a/drivers/s390/char/tty3270.c +++ b/drivers/s390/char/tty3270.c | |||
| @@ -965,8 +965,7 @@ tty3270_write_room(struct tty_struct *tty) | |||
| 965 | * Insert character into the screen at the current position with the | 965 | * Insert character into the screen at the current position with the |
| 966 | * current color and highlight. This function does NOT do cursor movement. | 966 | * current color and highlight. This function does NOT do cursor movement. |
| 967 | */ | 967 | */ |
| 968 | static int | 968 | static void tty3270_put_character(struct tty3270 *tp, char ch) |
| 969 | tty3270_put_character(struct tty3270 *tp, char ch) | ||
| 970 | { | 969 | { |
| 971 | struct tty3270_line *line; | 970 | struct tty3270_line *line; |
| 972 | struct tty3270_cell *cell; | 971 | struct tty3270_cell *cell; |
| @@ -986,7 +985,6 @@ tty3270_put_character(struct tty3270 *tp, char ch) | |||
| 986 | cell->character = tp->view.ascebc[(unsigned int) ch]; | 985 | cell->character = tp->view.ascebc[(unsigned int) ch]; |
| 987 | cell->highlight = tp->highlight; | 986 | cell->highlight = tp->highlight; |
| 988 | cell->f_color = tp->f_color; | 987 | cell->f_color = tp->f_color; |
| 989 | return 1; | ||
| 990 | } | 988 | } |
| 991 | 989 | ||
| 992 | /* | 990 | /* |
| @@ -1612,16 +1610,15 @@ tty3270_write(struct tty_struct * tty, | |||
| 1612 | /* | 1610 | /* |
| 1613 | * Put single characters to the ttys character buffer | 1611 | * Put single characters to the ttys character buffer |
| 1614 | */ | 1612 | */ |
| 1615 | static void | 1613 | static int tty3270_put_char(struct tty_struct *tty, unsigned char ch) |
| 1616 | tty3270_put_char(struct tty_struct *tty, unsigned char ch) | ||
| 1617 | { | 1614 | { |
| 1618 | struct tty3270 *tp; | 1615 | struct tty3270 *tp; |
| 1619 | 1616 | ||
| 1620 | tp = tty->driver_data; | 1617 | tp = tty->driver_data; |
| 1621 | if (!tp) | 1618 | if (!tp || tp->char_count >= TTY3270_CHAR_BUF_SIZE) |
| 1622 | return; | 1619 | return 0; |
| 1623 | if (tp->char_count < TTY3270_CHAR_BUF_SIZE) | 1620 | tp->char_buf[tp->char_count++] = ch; |
| 1624 | tp->char_buf[tp->char_count++] = ch; | 1621 | return 1; |
| 1625 | } | 1622 | } |
| 1626 | 1623 | ||
| 1627 | /* | 1624 | /* |
