aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of/platform.c
diff options
context:
space:
mode:
authorJonas Bonn <jonas@southpole.se>2010-07-23 13:19:35 -0400
committerGrant Likely <grant.likely@secretlab.ca>2010-07-24 11:58:22 -0400
commitc608558407aa64d2b98d58bfc116e95c0afb357e (patch)
tree1dba985555b1fff5ce587c6368f47383ba00ebd4 /drivers/of/platform.c
parentde48e369e8ea3a773cb2f959b76fcfad9966f4a0 (diff)
of: make of_find_device_by_node generic
There's no need for this function to be architecture specific and all four architectures defining it had the same definition. The function has been moved to drivers/of/platform.c. Signed-off-by: Jonas Bonn <jonas@southpole.se> [grant.likely@secretlab.ca: moved to drivers/of/platform.c, simplified code, and added kerneldoc comment] Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/of/platform.c')
-rw-r--r--drivers/of/platform.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/of/platform.c b/drivers/of/platform.c
index 9f3840cdcde5..f79f40b516c6 100644
--- a/drivers/of/platform.c
+++ b/drivers/of/platform.c
@@ -22,6 +22,26 @@
22#include <linux/of_platform.h> 22#include <linux/of_platform.h>
23#include <linux/platform_device.h> 23#include <linux/platform_device.h>
24 24
25static int of_dev_node_match(struct device *dev, void *data)
26{
27 return dev->of_node == data;
28}
29
30/**
31 * of_find_device_by_node - Find the platform_device associated with a node
32 * @np: Pointer to device tree node
33 *
34 * Returns platform_device pointer, or NULL if not found
35 */
36struct platform_device *of_find_device_by_node(struct device_node *np)
37{
38 struct device *dev;
39
40 dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
41 return dev ? to_platform_device(dev) : NULL;
42}
43EXPORT_SYMBOL(of_find_device_by_node);
44
25static int platform_driver_probe_shim(struct platform_device *pdev) 45static int platform_driver_probe_shim(struct platform_device *pdev)
26{ 46{
27 struct platform_driver *pdrv; 47 struct platform_driver *pdrv;