aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/device.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index d2434934d091..43249260cd1c 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -262,8 +262,8 @@ extern void class_device_destroy(struct class *cls, dev_t devt);
262 262
263 263
264struct device { 264struct device {
265 struct list_head node; /* node in sibling list */ 265 struct klist klist_children;
266 struct list_head children; 266 struct klist_node knode_parent; /* node in sibling list */
267 struct klist_node knode_driver; 267 struct klist_node knode_driver;
268 struct klist_node knode_bus; 268 struct klist_node knode_bus;
269 struct device * parent; 269 struct device * parent;
@@ -298,12 +298,6 @@ struct device {
298 void (*release)(struct device * dev); 298 void (*release)(struct device * dev);
299}; 299};
300 300
301static inline struct device *
302list_to_dev(struct list_head *node)
303{
304 return list_entry(node, struct device, node);
305}
306
307static inline void * 301static inline void *
308dev_get_drvdata (struct device *dev) 302dev_get_drvdata (struct device *dev)
309{ 303{