aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/device.h')
-rw-r--r--include/linux/device.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 92ba3a874627..cdaf57bf4d19 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -177,8 +177,7 @@ struct class {
177 struct list_head devices; 177 struct list_head devices;
178 struct list_head interfaces; 178 struct list_head interfaces;
179 struct kset class_dirs; 179 struct kset class_dirs;
180 struct semaphore sem; /* locks both the children and interfaces lists */ 180 struct semaphore sem; /* locks children, devices, interfaces */
181
182 struct class_attribute * class_attrs; 181 struct class_attribute * class_attrs;
183 struct class_device_attribute * class_dev_attrs; 182 struct class_device_attribute * class_dev_attrs;
184 struct device_attribute * dev_attrs; 183 struct device_attribute * dev_attrs;
@@ -196,6 +195,12 @@ struct class {
196 195
197extern int __must_check class_register(struct class *); 196extern int __must_check class_register(struct class *);
198extern void class_unregister(struct class *); 197extern void class_unregister(struct class *);
198extern int class_for_each_device(struct class *class, void *data,
199 int (*fn)(struct device *dev, void *data));
200extern struct device *class_find_device(struct class *class, void *data,
201 int (*match)(struct device *, void *));
202extern struct class_device *class_find_child(struct class *class, void *data,
203 int (*match)(struct class_device *, void *));
199 204
200 205
201struct class_attribute { 206struct class_attribute {