summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2015-06-19 06:10:08 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2015-07-02 08:23:29 +0200
commit08120e2166f3702ae1e2fcc6c9dbca34a0ef4098 (patch)
tree69c9c30f8490d31096e981e445d0db225dacf4f0
parent89d597c860e6c4219473428d4f2e807f21286f1b (diff)
downloadbarebox-08120e2166f3702ae1e2fcc6c9dbca34a0ef4098.tar.gz
barebox-08120e2166f3702ae1e2fcc6c9dbca34a0ef4098.tar.xz
of: export of_platform_device_create
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/of/platform.c2
-rw-r--r--include/of.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c
index ab3ccab3b6..2c075dbae3 100644
--- a/drivers/of/platform.c
+++ b/drivers/of/platform.c
@@ -118,7 +118,7 @@ static void of_device_make_bus_id(struct device_d *dev)
* Returns pointer to created platform device, or NULL if a device was not
* registered. Unavailable devices will not get registered.
*/
-static struct device_d *of_platform_device_create(struct device_node *np,
+struct device_d *of_platform_device_create(struct device_node *np,
struct device_d *parent)
{
struct device_d *dev;
diff --git a/include/of.h b/include/of.h
index c02f5f49ab..1db210b38a 100644
--- a/include/of.h
+++ b/include/of.h
@@ -224,6 +224,8 @@ extern int of_modalias_node(struct device_node *node, char *modalias, int len);
extern struct device_node *of_get_root_node(void);
extern int of_set_root_node(struct device_node *node);
+extern struct device_d *of_platform_device_create(struct device_node *np,
+ struct device_d *parent);
extern int of_platform_populate(struct device_node *root,
const struct of_device_id *matches,
struct device_d *parent);