aboutsummaryrefslogtreecommitdiffstats
path: root/arch/microblaze/kernel
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2010-07-22 18:10:32 -0400
committerGrant Likely <grant.likely@secretlab.ca>2010-07-24 11:58:22 -0400
commitde48e369e8ea3a773cb2f959b76fcfad9966f4a0 (patch)
tree180f061ee309f3ea6c6b166f332b22ea1d95f037 /arch/microblaze/kernel
parentcd4cd7306a403f62ef3ca783b9d1cf2a03e595ed (diff)
microblaze: remove references to of_device and to_of_device
of_device is just a #define alias to platform_device. This patch replaces all references to it with platform_device. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/microblaze/kernel')
-rw-r--r--arch/microblaze/kernel/of_platform.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/microblaze/kernel/of_platform.c b/arch/microblaze/kernel/of_platform.c
index 80c9c493cb25..c664b275a5fa 100644
--- a/arch/microblaze/kernel/of_platform.c
+++ b/arch/microblaze/kernel/of_platform.c
@@ -50,16 +50,16 @@ const struct of_device_id of_default_bus_ids[] = {
50 50
51static int of_dev_node_match(struct device *dev, void *data) 51static int of_dev_node_match(struct device *dev, void *data)
52{ 52{
53 return to_of_device(dev)->dev.of_node == data; 53 return to_platform_device(dev)->dev.of_node == data;
54} 54}
55 55
56struct of_device *of_find_device_by_node(struct device_node *np) 56struct platform_device *of_find_device_by_node(struct device_node *np)
57{ 57{
58 struct device *dev; 58 struct device *dev;
59 59
60 dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match); 60 dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match);
61 if (dev) 61 if (dev)
62 return to_of_device(dev); 62 return to_platform_device(dev);
63 return NULL; 63 return NULL;
64} 64}
65EXPORT_SYMBOL(of_find_device_by_node); 65EXPORT_SYMBOL(of_find_device_by_node);