diff options
| author | Patrick Mochel <mochel@osdl.org> | 2002-12-19 22:14:38 -0600 |
|---|---|---|
| committer | Patrick Mochel <mochel@osdl.org> | 2002-12-19 22:14:38 -0600 |
| commit | c3a72b427ba8614b02268a82a9f04b7eb0ae57f0 (patch) | |
| tree | ff70460dacdb23d31136b87b739740a028487569 /include/linux/device.h | |
| parent | 6fd89167a6ea25111ad598947261d6e675521f49 (diff) | |
driver model: eliminate struct device_driver::bus_list
- use list in embedded kobject instead.
- remove struct bus_list::drivers; use ::drvsubsys.
Diffstat (limited to 'include/linux/device.h')
| -rw-r--r-- | include/linux/device.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 48612267bd65..0099e27316b0 100644 --- a/include/linux/device.h +++ b/include/linux/device.h @@ -69,7 +69,6 @@ struct bus_type { struct subsystem drvsubsys; struct subsystem devsubsys; struct list_head devices; - struct list_head drivers; int (*match)(struct device * dev, struct device_driver * drv); struct device * (*add) (struct device * parent, char * bus_id); @@ -119,7 +118,6 @@ struct device_driver { struct semaphore unload_sem; struct kobject kobj; - struct list_head bus_list; struct list_head class_list; struct list_head devices; |
