of: Remove unused of_find_device_by_phandle()
authorGrant Likely <grant.likely@secretlab.ca>
Tue, 29 Jun 2010 16:19:30 +0000 (09:19 -0700)
committerGrant Likely <grant.likely@secretlab.ca>
Mon, 19 Jul 2010 04:39:36 +0000 (22:39 -0600)
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/microblaze/include/asm/of_platform.h
arch/microblaze/kernel/of_platform.c
arch/powerpc/include/asm/of_platform.h
arch/powerpc/kernel/of_platform.c

index 625003f..353d8f6 100644 (file)
@@ -14,8 +14,6 @@
 /* This is just here during the transition */
 #include <linux/of_platform.h>
 
-extern struct of_device *of_find_device_by_phandle(phandle ph);
-
 extern void of_instantiate_rtc(void);
 
 #endif /* _ASM_MICROBLAZE_OF_PLATFORM_H */
index a07abdd..da79edf 100644 (file)
@@ -75,21 +75,3 @@ struct of_device *of_find_device_by_node(struct device_node *np)
        return NULL;
 }
 EXPORT_SYMBOL(of_find_device_by_node);
-
-static int of_dev_phandle_match(struct device *dev, void *data)
-{
-       phandle *ph = data;
-       return to_of_device(dev)->dev.of_node->phandle == *ph;
-}
-
-struct of_device *of_find_device_by_phandle(phandle ph)
-{
-       struct device *dev;
-
-       dev = bus_find_device(&of_platform_bus_type,
-                             NULL, &ph, of_dev_phandle_match);
-       if (dev)
-               return to_of_device(dev);
-       return NULL;
-}
-EXPORT_SYMBOL(of_find_device_by_phandle);
index b37d2dc..d506aa6 100644 (file)
@@ -11,8 +11,6 @@
  *
  */
 
-extern struct of_device *of_find_device_by_phandle(phandle ph);
-
 extern void of_instantiate_rtc(void);
 
 #endif /* _ASM_POWERPC_OF_PLATFORM_H */
index 0b5cc6d..4e0a2f7 100644 (file)
@@ -81,25 +81,6 @@ struct of_device *of_find_device_by_node(struct device_node *np)
 }
 EXPORT_SYMBOL(of_find_device_by_node);
 
-static int of_dev_phandle_match(struct device *dev, void *data)
-{
-       phandle *ph = data;
-       return to_of_device(dev)->dev.of_node->phandle == *ph;
-}
-
-struct of_device *of_find_device_by_phandle(phandle ph)
-{
-       struct device *dev;
-
-       dev = bus_find_device(&of_platform_bus_type,
-                             NULL, &ph, of_dev_phandle_match);
-       if (dev)
-               return to_of_device(dev);
-       return NULL;
-}
-EXPORT_SYMBOL(of_find_device_by_phandle);
-
-
 #ifdef CONFIG_PPC_OF_PLATFORM_PCI
 
 /* The probing of PCI controllers from of_platform is currently