[PATCH] Add a klist to struct device_driver for the devices bound to it.
[deliverable/linux.git] / include / linux / device.h
index ea9ab33dfe71b1ca6bf9e181973cb9b56fd55d49..96c71b59fdef0ccb6ef4930ebe761ea633d94dac 100644 (file)
@@ -105,7 +105,7 @@ struct device_driver {
 
        struct completion       unloaded;
        struct kobject          kobj;
-       struct list_head        devices;
+       struct klist            klist_devices;
        struct klist_node       knode_bus;
 
        struct module           * owner;
@@ -266,6 +266,7 @@ struct device {
        struct list_head bus_list;      /* node in bus's list */
        struct list_head driver_list;
        struct list_head children;
+       struct klist_node       knode_driver;
        struct klist_node       knode_bus;
        struct device   * parent;
 
This page took 0.027397 seconds and 5 git commands to generate.