Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304196
b: refs/heads/master
c: e695b28
h: refs/heads/master
v: v3
  • Loading branch information
Heiko Carstens authored and Greg Kroah-Hartman committed Apr 17, 2012
1 parent d6faef4 commit b05973a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: 86b26007a37d81e7aca242bb5b649473f8f81297
refs/heads/master: e695b28664827eaad4c8a4b6f921d3fae3e0f526
6 changes: 5 additions & 1 deletion trunk/drivers/s390/char/con3215.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,11 @@ static inline void raw3215_try_io(struct raw3215_info *raw)
static void raw3215_wakeup(unsigned long data)
{
struct raw3215_info *raw = (struct raw3215_info *) data;
tty_wakeup(raw->tty);
struct tty_struct *tty;

tty = tty_port_tty_get(&raw->port);
tty_wakeup(tty);
tty_kref_put(tty);
}

/*
Expand Down

0 comments on commit b05973a

Please sign in to comment.