Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338395
b: refs/heads/master
c: d2ffc74
h: refs/heads/master
i:
  338393: f5c2f87
  338391: b5d18fd
v: v3
  • Loading branch information
Jiri Slaby authored and Greg Kroah-Hartman committed Oct 30, 2012
1 parent dd904eb commit 07310ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ca364d8388602b5c0d607c5452774833cc1ad667
refs/heads/master: d2ffc740f33d432949eee7479ac49bafd9f5108a
17 changes: 2 additions & 15 deletions trunk/arch/um/drivers/chan_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -83,21 +83,8 @@ 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;
}
}

tty_insert_flip_char(tty, ch, TTY_NORMAL);
if (tty)
tty_insert_flip_char(tty, ch, TTY_NORMAL);
}

static int open_one_chan(struct chan *chan)
Expand Down

0 comments on commit 07310ac

Please sign in to comment.