diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-07-27 04:07:42 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-07-30 10:08:21 -0400 |
commit | 5dbffcd83d826a9b42a10afb89b13156dc5b9539 (patch) | |
tree | 6803ca890151a325b592d758572d3cc6abded524 /drivers/scsi/ch.c | |
parent | 0a637a2cec724eeb4649f6d1c07026b72c39ad84 (diff) |
[SCSI] git-scsi-misc: drivers/scsi/ch.c: remove devfs stuff
It seems very unlikely that this driver will go into any stable kernel
before devfs will be removed.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/ch.c')
-rw-r--r-- | drivers/scsi/ch.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/scsi/ch.c b/drivers/scsi/ch.c index 3900e28ac7d6..53b395534313 100644 --- a/drivers/scsi/ch.c +++ b/drivers/scsi/ch.c | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/interrupt.h> | 20 | #include <linux/interrupt.h> |
21 | #include <linux/blkdev.h> | 21 | #include <linux/blkdev.h> |
22 | #include <linux/completion.h> | 22 | #include <linux/completion.h> |
23 | #include <linux/devfs_fs_kernel.h> | ||
24 | #include <linux/ioctl32.h> | 23 | #include <linux/ioctl32.h> |
25 | #include <linux/compat.h> | 24 | #include <linux/compat.h> |
26 | #include <linux/chio.h> /* here are all the ioctls */ | 25 | #include <linux/chio.h> /* here are all the ioctls */ |
@@ -940,8 +939,6 @@ static int ch_probe(struct device *dev) | |||
940 | if (init) | 939 | if (init) |
941 | ch_init_elem(ch); | 940 | ch_init_elem(ch); |
942 | 941 | ||
943 | devfs_mk_cdev(MKDEV(SCSI_CHANGER_MAJOR,ch->minor), | ||
944 | S_IFCHR | S_IRUGO | S_IWUGO, ch->name); | ||
945 | class_device_create(ch_sysfs_class, | 942 | class_device_create(ch_sysfs_class, |
946 | MKDEV(SCSI_CHANGER_MAJOR,ch->minor), | 943 | MKDEV(SCSI_CHANGER_MAJOR,ch->minor), |
947 | dev, "s%s", ch->name); | 944 | dev, "s%s", ch->name); |
@@ -974,7 +971,6 @@ static int ch_remove(struct device *dev) | |||
974 | 971 | ||
975 | class_device_destroy(ch_sysfs_class, | 972 | class_device_destroy(ch_sysfs_class, |
976 | MKDEV(SCSI_CHANGER_MAJOR,ch->minor)); | 973 | MKDEV(SCSI_CHANGER_MAJOR,ch->minor)); |
977 | devfs_remove(ch->name); | ||
978 | kfree(ch->dt); | 974 | kfree(ch->dt); |
979 | kfree(ch); | 975 | kfree(ch); |
980 | ch_devcount--; | 976 | ch_devcount--; |