|
@@ -2728,7 +2728,7 @@ void tty_register_device(struct tty_driver *driver, unsigned index,
|
|
|
pty_line_name(driver, index, name);
|
|
|
else
|
|
|
tty_line_name(driver, index, name);
|
|
|
- class_device_create(tty_class, dev, device, name);
|
|
|
+ class_device_create(tty_class, NULL, dev, device, "%s", name);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -2983,14 +2983,14 @@ static int __init tty_init(void)
|
|
|
register_chrdev_region(MKDEV(TTYAUX_MAJOR, 0), 1, "/dev/tty") < 0)
|
|
|
panic("Couldn't register /dev/tty driver\n");
|
|
|
devfs_mk_cdev(MKDEV(TTYAUX_MAJOR, 0), S_IFCHR|S_IRUGO|S_IWUGO, "tty");
|
|
|
- class_device_create(tty_class, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty");
|
|
|
+ class_device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 0), NULL, "tty");
|
|
|
|
|
|
cdev_init(&console_cdev, &console_fops);
|
|
|
if (cdev_add(&console_cdev, MKDEV(TTYAUX_MAJOR, 1), 1) ||
|
|
|
register_chrdev_region(MKDEV(TTYAUX_MAJOR, 1), 1, "/dev/console") < 0)
|
|
|
panic("Couldn't register /dev/console driver\n");
|
|
|
devfs_mk_cdev(MKDEV(TTYAUX_MAJOR, 1), S_IFCHR|S_IRUSR|S_IWUSR, "console");
|
|
|
- class_device_create(tty_class, MKDEV(TTYAUX_MAJOR, 1), NULL, "console");
|
|
|
+ class_device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 1), NULL, "console");
|
|
|
|
|
|
#ifdef CONFIG_UNIX98_PTYS
|
|
|
cdev_init(&ptmx_cdev, &ptmx_fops);
|
|
@@ -2998,7 +2998,7 @@ static int __init tty_init(void)
|
|
|
register_chrdev_region(MKDEV(TTYAUX_MAJOR, 2), 1, "/dev/ptmx") < 0)
|
|
|
panic("Couldn't register /dev/ptmx driver\n");
|
|
|
devfs_mk_cdev(MKDEV(TTYAUX_MAJOR, 2), S_IFCHR|S_IRUGO|S_IWUGO, "ptmx");
|
|
|
- class_device_create(tty_class, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
|
|
|
+ class_device_create(tty_class, NULL, MKDEV(TTYAUX_MAJOR, 2), NULL, "ptmx");
|
|
|
#endif
|
|
|
|
|
|
#ifdef CONFIG_VT
|
|
@@ -3007,7 +3007,7 @@ static int __init tty_init(void)
|
|
|
register_chrdev_region(MKDEV(TTY_MAJOR, 0), 1, "/dev/vc/0") < 0)
|
|
|
panic("Couldn't register /dev/tty0 driver\n");
|
|
|
devfs_mk_cdev(MKDEV(TTY_MAJOR, 0), S_IFCHR|S_IRUSR|S_IWUSR, "vc/0");
|
|
|
- class_device_create(tty_class, MKDEV(TTY_MAJOR, 0), NULL, "tty0");
|
|
|
+ class_device_create(tty_class, NULL, MKDEV(TTY_MAJOR, 0), NULL, "tty0");
|
|
|
|
|
|
vty_init();
|
|
|
#endif
|