aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2010-06-29 12:19:30 -0400
committerGrant Likely <grant.likely@secretlab.ca>2010-07-19 00:39:36 -0400
commitc5f5849bffb36478dd8a1e350860ff18b654bc44 (patch)
treed66fe98e4a097f901b2d98989c30f11f7f7a5386 /arch/microblaze
parent60d599133011eaca6073696f6a86cd516854d547 (diff)
of: Remove unused of_find_device_by_phandle()
Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/microblaze')
-rw-r--r--arch/microblaze/include/asm/of_platform.h2
-rw-r--r--arch/microblaze/kernel/of_platform.c18
2 files changed, 0 insertions, 20 deletions
diff --git a/arch/microblaze/include/asm/of_platform.h b/arch/microblaze/include/asm/of_platform.h
index 625003f70888..353d8f651e30 100644
--- a/arch/microblaze/include/asm/of_platform.h
+++ b/arch/microblaze/include/asm/of_platform.h
@@ -14,8 +14,6 @@
14/* This is just here during the transition */ 14/* This is just here during the transition */
15#include <linux/of_platform.h> 15#include <linux/of_platform.h>
16 16
17extern struct of_device *of_find_device_by_phandle(phandle ph);
18
19extern void of_instantiate_rtc(void); 17extern void of_instantiate_rtc(void);
20 18
21#endif /* _ASM_MICROBLAZE_OF_PLATFORM_H */ 19#endif /* _ASM_MICROBLAZE_OF_PLATFORM_H */
diff --git a/arch/microblaze/kernel/of_platform.c b/arch/microblaze/kernel/of_platform.c
index a07abdd6859b..da79edf45420 100644
--- a/arch/microblaze/kernel/of_platform.c
+++ b/arch/microblaze/kernel/of_platform.c
@@ -75,21 +75,3 @@ struct of_device *of_find_device_by_node(struct device_node *np)
75 return NULL; 75 return NULL;
76} 76}
77EXPORT_SYMBOL(of_find_device_by_node); 77EXPORT_SYMBOL(of_find_device_by_node);
78
79static int of_dev_phandle_match(struct device *dev, void *data)
80{
81 phandle *ph = data;
82 return to_of_device(dev)->dev.of_node->phandle == *ph;
83}
84
85struct of_device *of_find_device_by_phandle(phandle ph)
86{
87 struct device *dev;
88
89 dev = bus_find_device(&of_platform_bus_type,
90 NULL, &ph, of_dev_phandle_match);
91 if (dev)
92 return to_of_device(dev);
93 return NULL;
94}
95EXPORT_SYMBOL(of_find_device_by_phandle);