diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-18 17:36:58 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-31 20:23:41 -0500 |
commit | 595b14cbccb2f9122bccfa6b55f2d9a380e9adeb (patch) | |
tree | 88f6a554b47f4a5676a11805a4b6496e39987b46 /drivers/usb | |
parent | 630aa3cfd5f0bae9547fe7dff175d7323d60140d (diff) |
[PATCH] USB: remove some left over devfs droppings hanging around in the usb drivers
As there is no more usb devfs support, these bits would just confuse
people.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/input/hiddev.c | 3 | ||||
-rw-r--r-- | drivers/usb/misc/ldusb.c | 2 | ||||
-rw-r--r-- | drivers/usb/usb-skeleton.c | 2 |
3 files changed, 2 insertions, 5 deletions
diff --git a/drivers/usb/input/hiddev.c b/drivers/usb/input/hiddev.c index 4dff8473553d..77be6b9a820f 100644 --- a/drivers/usb/input/hiddev.c +++ b/drivers/usb/input/hiddev.c | |||
@@ -35,7 +35,6 @@ | |||
35 | #include <linux/usb.h> | 35 | #include <linux/usb.h> |
36 | #include "hid.h" | 36 | #include "hid.h" |
37 | #include <linux/hiddev.h> | 37 | #include <linux/hiddev.h> |
38 | #include <linux/devfs_fs_kernel.h> | ||
39 | 38 | ||
40 | #ifdef CONFIG_USB_DYNAMIC_MINORS | 39 | #ifdef CONFIG_USB_DYNAMIC_MINORS |
41 | #define HIDDEV_MINOR_BASE 0 | 40 | #define HIDDEV_MINOR_BASE 0 |
@@ -832,12 +831,10 @@ static /* const */ struct usb_driver hiddev_driver = { | |||
832 | 831 | ||
833 | int __init hiddev_init(void) | 832 | int __init hiddev_init(void) |
834 | { | 833 | { |
835 | devfs_mk_dir("usb/hid"); | ||
836 | return usb_register(&hiddev_driver); | 834 | return usb_register(&hiddev_driver); |
837 | } | 835 | } |
838 | 836 | ||
839 | void hiddev_exit(void) | 837 | void hiddev_exit(void) |
840 | { | 838 | { |
841 | usb_deregister(&hiddev_driver); | 839 | usb_deregister(&hiddev_driver); |
842 | devfs_remove("usb/hid"); | ||
843 | } | 840 | } |
diff --git a/drivers/usb/misc/ldusb.c b/drivers/usb/misc/ldusb.c index 981d8a5fbfd9..331d4ae949ed 100644 --- a/drivers/usb/misc/ldusb.c +++ b/drivers/usb/misc/ldusb.c | |||
@@ -593,7 +593,7 @@ static struct file_operations ld_usb_fops = { | |||
593 | 593 | ||
594 | /* | 594 | /* |
595 | * usb class driver info in order to get a minor number from the usb core, | 595 | * usb class driver info in order to get a minor number from the usb core, |
596 | * and to have the device registered with devfs and the driver core | 596 | * and to have the device registered with the driver core |
597 | */ | 597 | */ |
598 | static struct usb_class_driver ld_usb_class = { | 598 | static struct usb_class_driver ld_usb_class = { |
599 | .name = "ldusb%d", | 599 | .name = "ldusb%d", |
diff --git a/drivers/usb/usb-skeleton.c b/drivers/usb/usb-skeleton.c index 5d02f16b7d0e..4de9fb56ebfc 100644 --- a/drivers/usb/usb-skeleton.c +++ b/drivers/usb/usb-skeleton.c | |||
@@ -234,7 +234,7 @@ static struct file_operations skel_fops = { | |||
234 | 234 | ||
235 | /* | 235 | /* |
236 | * usb class driver info in order to get a minor number from the usb core, | 236 | * usb class driver info in order to get a minor number from the usb core, |
237 | * and to have the device registered with devfs and the driver core | 237 | * and to have the device registered with the driver core |
238 | */ | 238 | */ |
239 | static struct usb_class_driver skel_class = { | 239 | static struct usb_class_driver skel_class = { |
240 | .name = "skel%d", | 240 | .name = "skel%d", |