Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 338362
b: refs/heads/master
c: 7a0c4ed
h: refs/heads/master
v: v3
  • Loading branch information
Sangho Yi authored and Greg Kroah-Hartman committed Oct 24, 2012
1 parent 399f8ba commit 52c94a7
Show file tree
Hide file tree
Showing 2 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: 8ae763cd7e88a6bc552a6615ba6c1dcaa4828cbf
refs/heads/master: 7a0c4edae99da6ab3d402deb0d88410251c6ac63
4 changes: 2 additions & 2 deletions trunk/drivers/tty/tty_mutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static void __lockfunc tty_lock_nested(struct tty_struct *tty,
unsigned int subclass)
{
if (tty->magic != TTY_MAGIC) {
printk(KERN_ERR "L Bad %p\n", tty);
pr_err("L Bad %p\n", tty);
WARN_ON(1);
return;
}
Expand All @@ -36,7 +36,7 @@ EXPORT_SYMBOL(tty_lock);
void __lockfunc tty_unlock(struct tty_struct *tty)
{
if (tty->magic != TTY_MAGIC) {
printk(KERN_ERR "U Bad %p\n", tty);
pr_err("U Bad %p\n", tty);
WARN_ON(1);
return;
}
Expand Down

0 comments on commit 52c94a7

Please sign in to comment.