diff options
Diffstat (limited to 'include/linux/of_device.h')
-rw-r--r-- | include/linux/of_device.h | 49 |
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 | |||
13 | extern const struct of_device_id *of_match_device( | 12 | extern 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); |
14 | extern 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 | */ | ||
21 | static 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 | ||
16 | extern struct of_device *of_dev_get(struct of_device *dev); | 27 | extern struct platform_device *of_dev_get(struct platform_device *dev); |
17 | extern void of_dev_put(struct of_device *dev); | 28 | extern void of_dev_put(struct platform_device *dev); |
18 | 29 | ||
19 | extern int of_device_register(struct of_device *ofdev); | 30 | extern int of_device_register(struct platform_device *ofdev); |
20 | extern void of_device_unregister(struct of_device *ofdev); | 31 | extern void of_device_unregister(struct platform_device *ofdev); |
21 | extern void of_release_dev(struct device *dev); | 32 | extern void of_release_dev(struct device *dev); |
22 | 33 | ||
23 | static inline void of_device_free(struct of_device *dev) | 34 | static 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 | ||
28 | extern ssize_t of_device_get_modalias(struct of_device *ofdev, | 39 | extern ssize_t of_device_get_modalias(struct device *dev, |
29 | char *str, ssize_t len); | 40 | char *str, ssize_t len); |
41 | |||
42 | extern int of_device_uevent(struct device *dev, struct kobj_uevent_env *env); | ||
43 | |||
44 | |||
45 | #else /* CONFIG_OF_DEVICE */ | ||
46 | |||
47 | static inline int of_driver_match_device(struct device *dev, | ||
48 | struct device_driver *drv) | ||
49 | { | ||
50 | return 0; | ||
51 | } | ||
52 | |||
53 | static 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 */ |