Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338388
b: refs/heads/master
c: cadf748
h: refs/heads/master
v: v3
  • Loading branch information
Sasha Levin authored and Greg Kroah-Hartman committed Oct 25, 2012
1 parent 0f8b7a3 commit c046fc3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: 2e30802625f5754e9a0ce478a447ed0f2376d4d4
refs/heads/master: cadf74869013dc309bde50ed446f56d33a6a9806
2 changes: 1 addition & 1 deletion trunk/drivers/tty/n_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ static void n_tty_set_room(struct tty_struct *tty)
/* Did this open up the receive buffer? We may need to flip */
if (left && !old_left) {
WARN_RATELIMIT(tty->port->itty == NULL,
"scheduling with invalid itty");
"scheduling with invalid itty\n");
schedule_work(&tty->port->buf.work);
}
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/tty/tty_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ static void flush_to_ldisc(struct work_struct *work)
struct tty_ldisc *disc;

tty = port->itty;
if (WARN_RATELIMIT(tty == NULL, "tty is NULL"))
if (WARN_RATELIMIT(tty == NULL, "tty is NULL\n"))
return;

disc = tty_ldisc_ref(tty);
Expand Down

0 comments on commit c046fc3

Please sign in to comment.