diff options
| author | Greg Kroah-Hartman <gregkh@suse.de> | 2005-06-20 21:15:16 -0700 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-26 12:25:09 -0700 | 
| commit | 264f48646e6829b4d00a0e058452578318e6fb15 (patch) | |
| tree | a5a21554e26ae59e7b3a5af3e8c76e7daa8af9f3 /arch/um | |
| parent | 5e483075a1f9862a65af648d1d939499969c7b5d (diff) | |
[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>
Diffstat (limited to 'arch/um')
| -rw-r--r-- | arch/um/drivers/line.c | 1 | ||||
| -rw-r--r-- | arch/um/drivers/ssl.c | 1 | ||||
| -rw-r--r-- | arch/um/drivers/stdio_console.c | 1 | ||||
| -rw-r--r-- | arch/um/include/line.h | 1 | 
4 files changed, 0 insertions, 4 deletions
| diff --git a/arch/um/drivers/line.c b/arch/um/drivers/line.c index ee1fe6a24905..5ca57ca33713 100644 --- a/arch/um/drivers/line.c +++ b/arch/um/drivers/line.c @@ -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; diff --git a/arch/um/drivers/ssl.c b/arch/um/drivers/ssl.c index a4d6415bc8c4..6dafd6fbfdae 100644 --- a/arch/um/drivers/ssl.c +++ b/arch/um/drivers/ssl.c @@ -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, diff --git a/arch/um/drivers/stdio_console.c b/arch/um/drivers/stdio_console.c index 61db8b2fc83f..856f568c2687 100644 --- a/arch/um/drivers/stdio_console.c +++ b/arch/um/drivers/stdio_console.c @@ -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, diff --git a/arch/um/include/line.h b/arch/um/include/line.h index 6ac0f8252e21..27bf2f6fbc05 100644 --- a/arch/um/include/line.h +++ b/arch/um/include/line.h @@ -17,7 +17,6 @@  struct line_driver {  	char *name;  	char *device_name; -	char *devfs_name;  	short major;  	short minor_start;  	short type; | 
