dect
/
linux-2.6
Archived
13
0
Fork 0

tty: tty_mutex.c: Fixed coding style warning (using printk)

Here I fixed from printk(KERN_ERR, ... to pr_err(... on tty_mutex.c

Signed-off-by: Sangho Yi <antiroot@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Sangho Yi 2012-10-18 00:15:13 +09:00 committed by Greg Kroah-Hartman
parent 8ae763cd7e
commit 7a0c4edae9
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
@ -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;
}