aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/base/base.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/base/base.h')
-rw-r--r--drivers/base/base.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/base/base.h b/drivers/base/base.h
index 670b95a1a510..a77d4bd2ea63 100644
--- a/drivers/base/base.h
+++ b/drivers/base/base.h
@@ -40,7 +40,7 @@ struct driver_private {
40/** 40/**
41 * struct class_private - structure to hold the private to the driver core portions of the class structure. 41 * struct class_private - structure to hold the private to the driver core portions of the class structure.
42 * 42 *
43 * @subsys - the struct kset that defines this class. This is the main kobject 43 * @class_subsys - the struct kset that defines this class. This is the main kobject
44 * @children - list of class_devices associated with this class 44 * @children - list of class_devices associated with this class
45 * @class_devices - list of devices associated with this class 45 * @class_devices - list of devices associated with this class
46 * @class_interfaces - list of class_interfaces associated with this class 46 * @class_interfaces - list of class_interfaces associated with this class
@@ -54,14 +54,15 @@ struct driver_private {
54 * core should ever touch these fields. 54 * core should ever touch these fields.
55 */ 55 */
56struct class_private { 56struct class_private {
57 struct kset subsys; 57 struct kset class_subsys;
58 struct list_head class_devices; 58 struct list_head class_devices;
59 struct list_head class_interfaces; 59 struct list_head class_interfaces;
60 struct kset class_dirs; 60 struct kset class_dirs;
61 struct semaphore sem; 61 struct semaphore sem;
62 struct class *class; 62 struct class *class;
63}; 63};
64#define to_class(obj) container_of(obj, struct class_private, subsys.kobj) 64#define to_class(obj) \
65 container_of(obj, struct class_private, class_subsys.kobj)
65 66
66/* initialisation functions */ 67/* initialisation functions */
67extern int devices_init(void); 68extern int devices_init(void);