diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-29 14:19:21 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-29 14:19:21 -0700 | 
| commit | 602cada851b28c5792339786efe872fbdc1f5d41 (patch) | |
| tree | 233d474b74d6038b5bb54a07ad91dd1bb10b0218 /drivers/s390 | |
| parent | 82991c6f2c361acc17279b8124d9bf1878973435 (diff) | |
| parent | fee68d1cc0d9bd863e51c16cdcd707737b16bb38 (diff) | |
| download | linux-602cada851b28c5792339786efe872fbdc1f5d41.tar.bz2 | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/devfs-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/devfs-2.6: (22 commits)
  [PATCH] devfs: Remove it from the feature_removal.txt file
  [PATCH] devfs: Last little devfs cleanups throughout the kernel tree.
  [PATCH] devfs: Rename TTY_DRIVER_NO_DEVFS to TTY_DRIVER_DYNAMIC_DEV
  [PATCH] devfs: Remove the tty_driver devfs_name field as it's no longer needed
  [PATCH] devfs: Remove the line_driver devfs_name field as it's no longer needed
  [PATCH] devfs: Remove the videodevice devfs_name field as it's no longer needed
  [PATCH] devfs: Remove the gendisk devfs_name field as it's no longer needed
  [PATCH] devfs: Remove the miscdevice devfs_name field as it's no longer needed
  [PATCH] devfs: Remove the devfs_fs_kernel.h file from the tree
  [PATCH] devfs: Remove devfs_remove() function from the kernel tree
  [PATCH] devfs: Remove devfs_mk_cdev() function from the kernel tree
  [PATCH] devfs: Remove devfs_mk_bdev() function from the kernel tree
  [PATCH] devfs: Remove devfs_mk_symlink() function from the kernel tree
  [PATCH] devfs: Remove devfs_mk_dir() function from the kernel tree
  [PATCH] devfs: Remove devfs_*_tape() functions from the kernel tree
  [PATCH] devfs: Remove devfs support from the sound subsystem
  [PATCH] devfs: Remove devfs support from the ide subsystem.
  [PATCH] devfs: Remove devfs support from the serial subsystem
  [PATCH] devfs: Remove devfs from the init code
  [PATCH] devfs: Remove devfs from the partition code
  ...
Diffstat (limited to 'drivers/s390')
| -rw-r--r-- | drivers/s390/block/dasd.c | 4 | ||||
| -rw-r--r-- | drivers/s390/block/dasd_genhd.c | 2 | ||||
| -rw-r--r-- | drivers/s390/block/dasd_int.h | 1 | ||||
| -rw-r--r-- | drivers/s390/block/xpram.c | 6 | ||||
| -rw-r--r-- | drivers/s390/char/monreader.c | 1 | ||||
| -rw-r--r-- | drivers/s390/char/tty3270.c | 3 | ||||
| -rw-r--r-- | drivers/s390/crypto/z90main.c | 1 | 
7 files changed, 1 insertions, 17 deletions
| diff --git a/drivers/s390/block/dasd.c b/drivers/s390/block/dasd.c index bafcd2f20ae2..2dc179b14ce6 100644 --- a/drivers/s390/block/dasd.c +++ b/drivers/s390/block/dasd.c @@ -1834,7 +1834,6 @@ dasd_exit(void)  	}  	dasd_gendisk_exit();  	dasd_devmap_exit(); -	devfs_remove("dasd");  	if (dasd_debug_area != NULL) {  		debug_unregister(dasd_debug_area);  		dasd_debug_area = NULL; @@ -2107,9 +2106,6 @@ dasd_init(void)  	dasd_diag_discipline_pointer = NULL; -	rc = devfs_mk_dir("dasd"); -	if (rc) -		goto failed;  	rc = dasd_devmap_init();  	if (rc)  		goto failed; diff --git a/drivers/s390/block/dasd_genhd.c b/drivers/s390/block/dasd_genhd.c index fce2835e7d19..61ffde718a7a 100644 --- a/drivers/s390/block/dasd_genhd.c +++ b/drivers/s390/block/dasd_genhd.c @@ -68,8 +68,6 @@ dasd_gendisk_alloc(struct dasd_device *device)  	}  	len += sprintf(gdp->disk_name + len, "%c", 'a'+(device->devindex%26)); - 	sprintf(gdp->devfs_name, "dasd/%s", device->cdev->dev.bus_id); -  	if (device->features & DASD_FEATURE_READONLY)  		set_disk_ro(gdp, 1);  	gdp->private_data = device; diff --git a/drivers/s390/block/dasd_int.h b/drivers/s390/block/dasd_int.h index 03a83efc34c4..3ccf06d28ba1 100644 --- a/drivers/s390/block/dasd_int.h +++ b/drivers/s390/block/dasd_int.h @@ -54,7 +54,6 @@  #include <linux/module.h>  #include <linux/wait.h>  #include <linux/blkdev.h> -#include <linux/devfs_fs_kernel.h>  #include <linux/genhd.h>  #include <linux/hdreg.h>  #include <linux/interrupt.h> diff --git a/drivers/s390/block/xpram.c b/drivers/s390/block/xpram.c index 54ecd548c318..4c1e56b9b98d 100644 --- a/drivers/s390/block/xpram.c +++ b/drivers/s390/block/xpram.c @@ -36,7 +36,6 @@  #include <linux/hdreg.h>  /* HDIO_GETGEO */  #include <linux/sysdev.h>  #include <linux/bio.h> -#include <linux/devfs_fs_kernel.h>  #include <asm/uaccess.h>  #define XPRAM_NAME	"xpram" @@ -439,8 +438,6 @@ static int __init xpram_setup_blkdev(void)  	if (rc < 0)  		goto out; -	devfs_mk_dir("slram"); -  	/*  	 * Assign the other needed values: make request function, sizes and  	 * hardsect size. All the minor devices feature the same value. @@ -469,14 +466,12 @@ static int __init xpram_setup_blkdev(void)  		disk->private_data = &xpram_devices[i];  		disk->queue = xpram_queue;  		sprintf(disk->disk_name, "slram%d", i); -		sprintf(disk->devfs_name, "slram/%d", i);  		set_capacity(disk, xpram_sizes[i] << 1);  		add_disk(disk);  	}  	return 0;  out_unreg: -	devfs_remove("slram");  	unregister_blkdev(XPRAM_MAJOR, XPRAM_NAME);  out:  	while (i--) @@ -495,7 +490,6 @@ static void __exit xpram_exit(void)  		put_disk(xpram_disks[i]);  	}  	unregister_blkdev(XPRAM_MAJOR, XPRAM_NAME); -	devfs_remove("slram");  	blk_cleanup_queue(xpram_queue);  	sysdev_unregister(&xpram_sys_device);  	sysdev_class_unregister(&xpram_sysclass); diff --git a/drivers/s390/char/monreader.c b/drivers/s390/char/monreader.c index fb7bc9e5eebc..a138b1510093 100644 --- a/drivers/s390/char/monreader.c +++ b/drivers/s390/char/monreader.c @@ -586,7 +586,6 @@ static struct file_operations mon_fops = {  static struct miscdevice mon_dev = {  	.name       = "monreader", -	.devfs_name = "monreader",  	.fops       = &mon_fops,  	.minor      = MISC_DYNAMIC_MINOR,  }; diff --git a/drivers/s390/char/tty3270.c b/drivers/s390/char/tty3270.c index 9a141776873f..7d26a3e4cb80 100644 --- a/drivers/s390/char/tty3270.c +++ b/drivers/s390/char/tty3270.c @@ -1785,7 +1785,6 @@ tty3270_init(void)  	 * proc_entry, set_termios, flush_buffer, set_ldisc, write_proc  	 */  	driver->owner = THIS_MODULE; -	driver->devfs_name = "ttyTUB/";  	driver->driver_name = "ttyTUB";  	driver->name = "ttyTUB";  	driver->major = IBM_TTY3270_MAJOR; @@ -1793,7 +1792,7 @@ tty3270_init(void)  	driver->type = TTY_DRIVER_TYPE_SYSTEM;  	driver->subtype = SYSTEM_TYPE_TTY;  	driver->init_termios = tty_std_termios; -	driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_NO_DEVFS; +	driver->flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_DYNAMIC_DEV;  	tty_set_operations(driver, &tty3270_ops);  	ret = tty_register_driver(driver);  	if (ret) { diff --git a/drivers/s390/crypto/z90main.c b/drivers/s390/crypto/z90main.c index 982acc7303ea..b2f20ab8431a 100644 --- a/drivers/s390/crypto/z90main.c +++ b/drivers/s390/crypto/z90main.c @@ -411,7 +411,6 @@ static struct miscdevice z90crypt_misc_device = {  	.minor	    = Z90CRYPT_MINOR,  	.name	    = DEV_NAME,  	.fops	    = &z90crypt_fops, -	.devfs_name = DEV_NAME  };  /** |