aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/of_device.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/of_device.h')
-rw-r--r--include/linux/of_device.h49
1 files changed, 39 insertions, 10 deletions
diff --git a/include/linux/of_device.h b/include/linux/of_device.h
index 11651facc5f1..835f85ecd2de 100644
--- a/include/linux/of_device.h
+++ b/include/linux/of_device.h
@@ -1,32 +1,61 @@
1#ifndef _LINUX_OF_DEVICE_H 1#ifndef _LINUX_OF_DEVICE_H
2#define _LINUX_OF_DEVICE_H 2#define _LINUX_OF_DEVICE_H
3 3
4#include <linux/platform_device.h>
5#include <linux/of_platform.h> /* temporary until merge */
6
4#ifdef CONFIG_OF_DEVICE 7#ifdef CONFIG_OF_DEVICE
5#include <linux/device.h> 8#include <linux/device.h>
6#include <linux/of.h> 9#include <linux/of.h>
7#include <linux/mod_devicetable.h> 10#include <linux/mod_devicetable.h>
8 11
9#include <asm/of_device.h>
10
11#define to_of_device(d) container_of(d, struct of_device, dev)
12
13extern const struct of_device_id *of_match_device( 12extern const struct of_device_id *of_match_device(
14 const struct of_device_id *matches, const struct device *dev); 13 const struct of_device_id *matches, const struct device *dev);
14extern void of_device_make_bus_id(struct device *dev);
15
16/**
17 * of_driver_match_device - Tell if a driver's of_match_table matches a device.
18 * @drv: the device_driver structure to test
19 * @dev: the device structure to match against
20 */
21static inline int of_driver_match_device(const struct device *dev,
22 const struct device_driver *drv)
23{
24 return of_match_device(drv->of_match_table, dev) != NULL;
25}
15 26
16extern struct of_device *of_dev_get(struct of_device *dev); 27extern struct platform_device *of_dev_get(struct platform_device *dev);
17extern void of_dev_put(struct of_device *dev); 28extern void of_dev_put(struct platform_device *dev);
18 29
19extern int of_device_register(struct of_device *ofdev); 30extern int of_device_register(struct platform_device *ofdev);
20extern void of_device_unregister(struct of_device *ofdev); 31extern void of_device_unregister(struct platform_device *ofdev);
21extern void of_release_dev(struct device *dev); 32extern void of_release_dev(struct device *dev);
22 33
23static inline void of_device_free(struct of_device *dev) 34static inline void of_device_free(struct platform_device *dev)
24{ 35{
25 of_release_dev(&dev->dev); 36 of_release_dev(&dev->dev);
26} 37}
27 38
28extern ssize_t of_device_get_modalias(struct of_device *ofdev, 39extern ssize_t of_device_get_modalias(struct device *dev,
29 char *str, ssize_t len); 40 char *str, ssize_t len);
41
42extern int of_device_uevent(struct device *dev, struct kobj_uevent_env *env);
43
44
45#else /* CONFIG_OF_DEVICE */
46
47static inline int of_driver_match_device(struct device *dev,
48 struct device_driver *drv)
49{
50 return 0;
51}
52
53static inline int of_device_uevent(struct device *dev,
54 struct kobj_uevent_env *env)
55{
56 return -ENODEV;
57}
58
30#endif /* CONFIG_OF_DEVICE */ 59#endif /* CONFIG_OF_DEVICE */
31 60
32#endif /* _LINUX_OF_DEVICE_H */ 61#endif /* _LINUX_OF_DEVICE_H */