mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
[PATCH] devfs: Remove the line_driver devfs_name field as it's no longer needed
Also fixes all drivers that set this field. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
5e483075a1
commit
264f48646e
@ -654,7 +654,6 @@ struct tty_driver *line_register_devfs(struct lines *set,
|
||||
|
||||
driver->driver_name = line_driver->name;
|
||||
driver->name = line_driver->device_name;
|
||||
driver->devfs_name = line_driver->devfs_name;
|
||||
driver->major = line_driver->major;
|
||||
driver->minor_start = line_driver->minor_start;
|
||||
driver->type = line_driver->type;
|
||||
|
@ -54,7 +54,6 @@ static int ssl_remove(int n);
|
||||
static struct line_driver driver = {
|
||||
.name = "UML serial line",
|
||||
.device_name = "ttyS",
|
||||
.devfs_name = "tts/",
|
||||
.major = TTY_MAJOR,
|
||||
.minor_start = 64,
|
||||
.type = TTY_DRIVER_TYPE_SERIAL,
|
||||
|
@ -60,7 +60,6 @@ static int con_remove(int n);
|
||||
static struct line_driver driver = {
|
||||
.name = "UML console",
|
||||
.device_name = "tty",
|
||||
.devfs_name = "vc/",
|
||||
.major = TTY_MAJOR,
|
||||
.minor_start = 0,
|
||||
.type = TTY_DRIVER_TYPE_CONSOLE,
|
||||
|
@ -17,7 +17,6 @@
|
||||
struct line_driver {
|
||||
char *name;
|
||||
char *device_name;
|
||||
char *devfs_name;
|
||||
short major;
|
||||
short minor_start;
|
||||
short type;
|
||||
|
Loading…
Reference in New Issue
Block a user