diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-powerpc/of_device.h | 4 | ||||
-rw-r--r-- | include/linux/of_device.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/include/asm-powerpc/of_device.h b/include/asm-powerpc/of_device.h index 93262f2546ad..6526e139a463 100644 --- a/include/asm-powerpc/of_device.h +++ b/include/asm-powerpc/of_device.h | |||
@@ -17,6 +17,10 @@ struct of_device | |||
17 | struct device dev; /* Generic device interface */ | 17 | struct device dev; /* Generic device interface */ |
18 | }; | 18 | }; |
19 | 19 | ||
20 | extern struct of_device *of_device_alloc(struct device_node *np, | ||
21 | const char *bus_id, | ||
22 | struct device *parent); | ||
23 | |||
20 | extern ssize_t of_device_get_modalias(struct of_device *ofdev, | 24 | extern ssize_t of_device_get_modalias(struct of_device *ofdev, |
21 | char *str, ssize_t len); | 25 | char *str, ssize_t len); |
22 | extern int of_device_uevent(struct device *dev, | 26 | extern int of_device_uevent(struct device *dev, |
diff --git a/include/linux/of_device.h b/include/linux/of_device.h index 91bf84b9d144..212bffb2b174 100644 --- a/include/linux/of_device.h +++ b/include/linux/of_device.h | |||
@@ -22,5 +22,10 @@ extern int of_device_register(struct of_device *ofdev); | |||
22 | extern void of_device_unregister(struct of_device *ofdev); | 22 | extern void of_device_unregister(struct of_device *ofdev); |
23 | extern void of_release_dev(struct device *dev); | 23 | extern void of_release_dev(struct device *dev); |
24 | 24 | ||
25 | static inline void of_device_free(struct of_device *dev) | ||
26 | { | ||
27 | of_release_dev(&dev->dev); | ||
28 | } | ||
29 | |||
25 | #endif /* __KERNEL__ */ | 30 | #endif /* __KERNEL__ */ |
26 | #endif /* _LINUX_OF_DEVICE_H */ | 31 | #endif /* _LINUX_OF_DEVICE_H */ |