aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/of_platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/of_platform.h')
-rw-r--r--include/linux/of_platform.h14
1 files changed, 3 insertions, 11 deletions
diff --git a/include/linux/of_platform.h b/include/linux/of_platform.h
index 2a93b64a3869..7747ad0027ae 100644
--- a/include/linux/of_platform.h
+++ b/include/linux/of_platform.h
@@ -13,8 +13,6 @@
13 13
14#include <linux/device.h> 14#include <linux/device.h>
15#include <linux/mod_devicetable.h> 15#include <linux/mod_devicetable.h>
16
17#ifdef CONFIG_OF_DEVICE
18#include <linux/pm.h> 16#include <linux/pm.h>
19#include <linux/of_device.h> 17#include <linux/of_device.h>
20#include <linux/platform_device.h> 18#include <linux/platform_device.h>
@@ -82,7 +80,6 @@ extern struct platform_device *of_device_alloc(struct device_node *np,
82 struct device *parent); 80 struct device *parent);
83extern struct platform_device *of_find_device_by_node(struct device_node *np); 81extern struct platform_device *of_find_device_by_node(struct device_node *np);
84 82
85#ifdef CONFIG_OF_ADDRESS /* device reg helpers depend on OF_ADDRESS */
86/* Platform devices and busses creation */ 83/* Platform devices and busses creation */
87extern struct platform_device *of_platform_device_create(struct device_node *np, 84extern struct platform_device *of_platform_device_create(struct device_node *np,
88 const char *bus_id, 85 const char *bus_id,
@@ -91,17 +88,12 @@ extern struct platform_device *of_platform_device_create(struct device_node *np,
91extern int of_platform_bus_probe(struct device_node *root, 88extern int of_platform_bus_probe(struct device_node *root,
92 const struct of_device_id *matches, 89 const struct of_device_id *matches,
93 struct device *parent); 90 struct device *parent);
91#ifdef CONFIG_OF_ADDRESS
94extern int of_platform_populate(struct device_node *root, 92extern int of_platform_populate(struct device_node *root,
95 const struct of_device_id *matches, 93 const struct of_device_id *matches,
96 const struct of_dev_auxdata *lookup, 94 const struct of_dev_auxdata *lookup,
97 struct device *parent); 95 struct device *parent);
98#endif /* CONFIG_OF_ADDRESS */ 96#else
99
100#endif /* CONFIG_OF_DEVICE */
101
102#if !defined(CONFIG_OF_ADDRESS)
103struct of_dev_auxdata;
104struct device_node;
105static inline int of_platform_populate(struct device_node *root, 97static inline int of_platform_populate(struct device_node *root,
106 const struct of_device_id *matches, 98 const struct of_device_id *matches,
107 const struct of_dev_auxdata *lookup, 99 const struct of_dev_auxdata *lookup,
@@ -109,6 +101,6 @@ static inline int of_platform_populate(struct device_node *root,
109{ 101{
110 return -ENODEV; 102 return -ENODEV;
111} 103}
112#endif /* !CONFIG_OF_ADDRESS */ 104#endif
113 105
114#endif /* _LINUX_OF_PLATFORM_H */ 106#endif /* _LINUX_OF_PLATFORM_H */