summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorPatrick Mochel <mochel@osdl.org>2002-10-30 16:20:45 -0800
committerPatrick Mochel <mochel@osdl.org>2002-10-30 16:20:45 -0800
commitd7dce5e30c987d2df928784bbba2ab6caca180e9 (patch)
treeecc79253519aab05a9ad63eb905badf8b1ae97cd /include/linux
parent99af1a944187de3c4317e5eaa06b4bc4c8632a68 (diff)
driver model: remove remaining driverfs glue.
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/device.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 273e92e78d7a..cf9f785dfbde 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -73,10 +73,6 @@ struct bus_type {
struct list_head devices;
struct list_head drivers;
- struct driver_dir_entry dir;
- struct driver_dir_entry device_dir;
- struct driver_dir_entry driver_dir;
-
int (*match)(struct device * dev, struct device_driver * drv);
struct device * (*add) (struct device * parent, char * bus_id);
int (*hotplug) (struct device *dev, char **envp,
@@ -128,8 +124,6 @@ struct device_driver {
struct list_head class_list;
struct list_head devices;
- struct driver_dir_entry dir;
-
int (*probe) (struct device * dev);
int (*remove) (struct device * dev);
void (*shutdown) (struct device * dev);
@@ -189,10 +183,6 @@ struct device_class {
struct list_head drivers;
struct list_head intf_list;
- struct driver_dir_entry dir;
- struct driver_dir_entry driver_dir;
- struct driver_dir_entry device_dir;
-
int (*add_device)(struct device *);
void (*remove_device)(struct device *);
int (*hotplug)(struct device *dev, char **envp,
@@ -243,7 +233,6 @@ struct device_interface {
struct kobject kobj;
struct list_head node;
struct list_head devices;
- struct driver_dir_entry dir;
u32 devnum;