Loading arch/um/drivers/chan_kern.c +2 −15 Original line number Diff line number Diff line Loading @@ -83,20 +83,7 @@ static const struct chan_ops not_configged_ops = { static void tty_receive_char(struct tty_struct *tty, char ch) { if (tty == NULL) return; if (I_IXON(tty) && !I_IXOFF(tty) && !tty->raw) { if (ch == STOP_CHAR(tty)) { stop_tty(tty); return; } else if (ch == START_CHAR(tty)) { start_tty(tty); return; } } if (tty) tty_insert_flip_char(tty, ch, TTY_NORMAL); } Loading Loading
arch/um/drivers/chan_kern.c +2 −15 Original line number Diff line number Diff line Loading @@ -83,20 +83,7 @@ static const struct chan_ops not_configged_ops = { static void tty_receive_char(struct tty_struct *tty, char ch) { if (tty == NULL) return; if (I_IXON(tty) && !I_IXOFF(tty) && !tty->raw) { if (ch == STOP_CHAR(tty)) { stop_tty(tty); return; } else if (ch == START_CHAR(tty)) { start_tty(tty); return; } } if (tty) tty_insert_flip_char(tty, ch, TTY_NORMAL); } Loading