aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
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 /arch/powerpc
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 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/of_platform.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/powerpc/kernel/of_platform.c b/arch/powerpc/kernel/of_platform.c
index 84439d1b7cb3..760a7af7fdb5 100644
--- a/arch/powerpc/kernel/of_platform.c
+++ b/arch/powerpc/kernel/of_platform.c
@@ -52,22 +52,6 @@ const struct of_device_id of_default_bus_ids[] = {
52 {}, 52 {},
53}; 53};
54 54
55static int of_dev_node_match(struct device *dev, void *data)
56{
57 return to_platform_device(dev)->dev.of_node == data;
58}
59
60struct platform_device *of_find_device_by_node(struct device_node *np)
61{
62 struct device *dev;
63
64 dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
65 if (dev)
66 return to_platform_device(dev);
67 return NULL;
68}
69EXPORT_SYMBOL(of_find_device_by_node);
70
71#ifdef CONFIG_PPC_OF_PLATFORM_PCI 55#ifdef CONFIG_PPC_OF_PLATFORM_PCI
72 56
73/* The probing of PCI controllers from of_platform is currently 57/* The probing of PCI controllers from of_platform is currently