diff options
| -rw-r--r-- | drivers/tty/tty_io.c | 4 | ||||
| -rw-r--r-- | drivers/tty/vt/vt.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c index 464d09d97873..dae6fc96182c 100644 --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c | |||
| @@ -3257,7 +3257,7 @@ static ssize_t show_cons_active(struct device *dev, | |||
| 3257 | ssize_t count = 0; | 3257 | ssize_t count = 0; |
| 3258 | 3258 | ||
| 3259 | acquire_console_sem(); | 3259 | acquire_console_sem(); |
| 3260 | for (c = console_drivers; c; c = c->next) { | 3260 | for_each_console(c) { |
| 3261 | if (!c->device) | 3261 | if (!c->device) |
| 3262 | continue; | 3262 | continue; |
| 3263 | if (!c->write) | 3263 | if (!c->write) |
| @@ -3306,7 +3306,7 @@ int __init tty_init(void) | |||
| 3306 | if (IS_ERR(consdev)) | 3306 | if (IS_ERR(consdev)) |
| 3307 | consdev = NULL; | 3307 | consdev = NULL; |
| 3308 | else | 3308 | else |
| 3309 | device_create_file(consdev, &dev_attr_active); | 3309 | WARN_ON(device_create_file(consdev, &dev_attr_active) < 0); |
| 3310 | 3310 | ||
| 3311 | #ifdef CONFIG_VT | 3311 | #ifdef CONFIG_VT |
| 3312 | vty_init(&console_fops); | 3312 | vty_init(&console_fops); |
diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c index 4f6ae05eb4f9..955061863ed8 100644 --- a/drivers/tty/vt/vt.c +++ b/drivers/tty/vt/vt.c | |||
| @@ -2994,7 +2994,7 @@ int __init vty_init(const struct file_operations *console_fops) | |||
| 2994 | if (IS_ERR(tty0dev)) | 2994 | if (IS_ERR(tty0dev)) |
| 2995 | tty0dev = NULL; | 2995 | tty0dev = NULL; |
| 2996 | else | 2996 | else |
| 2997 | device_create_file(tty0dev, &dev_attr_active); | 2997 | WARN_ON(device_create_file(tty0dev, &dev_attr_active) < 0); |
| 2998 | 2998 | ||
| 2999 | vcs_init(); | 2999 | vcs_init(); |
| 3000 | 3000 | ||
