diff options
author | Jonas Bonn <jonas@southpole.se> | 2010-07-23 13:19:35 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-07-24 11:58:22 -0400 |
commit | c608558407aa64d2b98d58bfc116e95c0afb357e (patch) | |
tree | 1dba985555b1fff5ce587c6368f47383ba00ebd4 /arch/microblaze | |
parent | de48e369e8ea3a773cb2f959b76fcfad9966f4a0 (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/microblaze')
-rw-r--r-- | arch/microblaze/kernel/of_platform.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/microblaze/kernel/of_platform.c b/arch/microblaze/kernel/of_platform.c index c664b275a5fa..6cffadbe2fcd 100644 --- a/arch/microblaze/kernel/of_platform.c +++ b/arch/microblaze/kernel/of_platform.c | |||
@@ -47,19 +47,3 @@ const struct of_device_id of_default_bus_ids[] = { | |||
47 | { .type = "simple", }, | 47 | { .type = "simple", }, |
48 | {}, | 48 | {}, |
49 | }; | 49 | }; |
50 | |||
51 | static int of_dev_node_match(struct device *dev, void *data) | ||
52 | { | ||
53 | return to_platform_device(dev)->dev.of_node == data; | ||
54 | } | ||
55 | |||
56 | struct platform_device *of_find_device_by_node(struct device_node *np) | ||
57 | { | ||
58 | struct device *dev; | ||
59 | |||
60 | dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match); | ||
61 | if (dev) | ||
62 | return to_platform_device(dev); | ||
63 | return NULL; | ||
64 | } | ||
65 | EXPORT_SYMBOL(of_find_device_by_node); | ||