diff options
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r-- | arch/powerpc/kernel/ibmebus.c | 8 | ||||
-rw-r--r-- | arch/powerpc/kernel/of_platform.c | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/arch/powerpc/kernel/ibmebus.c b/arch/powerpc/kernel/ibmebus.c index 21266abfbda6..9b626cfffce1 100644 --- a/arch/powerpc/kernel/ibmebus.c +++ b/arch/powerpc/kernel/ibmebus.c | |||
@@ -140,19 +140,19 @@ static struct dma_map_ops ibmebus_dma_ops = { | |||
140 | 140 | ||
141 | static int ibmebus_match_path(struct device *dev, void *data) | 141 | static int ibmebus_match_path(struct device *dev, void *data) |
142 | { | 142 | { |
143 | struct device_node *dn = to_of_device(dev)->dev.of_node; | 143 | struct device_node *dn = to_platform_device(dev)->dev.of_node; |
144 | return (dn->full_name && | 144 | return (dn->full_name && |
145 | (strcasecmp((char *)data, dn->full_name) == 0)); | 145 | (strcasecmp((char *)data, dn->full_name) == 0)); |
146 | } | 146 | } |
147 | 147 | ||
148 | static int ibmebus_match_node(struct device *dev, void *data) | 148 | static int ibmebus_match_node(struct device *dev, void *data) |
149 | { | 149 | { |
150 | return to_of_device(dev)->dev.of_node == data; | 150 | return to_platform_device(dev)->dev.of_node == data; |
151 | } | 151 | } |
152 | 152 | ||
153 | static int ibmebus_create_device(struct device_node *dn) | 153 | static int ibmebus_create_device(struct device_node *dn) |
154 | { | 154 | { |
155 | struct of_device *dev; | 155 | struct platform_device *dev; |
156 | int ret; | 156 | int ret; |
157 | 157 | ||
158 | dev = of_device_alloc(dn, NULL, &ibmebus_bus_device); | 158 | dev = of_device_alloc(dn, NULL, &ibmebus_bus_device); |
@@ -298,7 +298,7 @@ static ssize_t ibmebus_store_remove(struct bus_type *bus, | |||
298 | 298 | ||
299 | if ((dev = bus_find_device(&ibmebus_bus_type, NULL, path, | 299 | if ((dev = bus_find_device(&ibmebus_bus_type, NULL, path, |
300 | ibmebus_match_path))) { | 300 | ibmebus_match_path))) { |
301 | of_device_unregister(to_of_device(dev)); | 301 | of_device_unregister(to_platform_device(dev)); |
302 | 302 | ||
303 | kfree(path); | 303 | kfree(path); |
304 | return count; | 304 | return count; |
diff --git a/arch/powerpc/kernel/of_platform.c b/arch/powerpc/kernel/of_platform.c index b093d4b1f09c..84439d1b7cb3 100644 --- a/arch/powerpc/kernel/of_platform.c +++ b/arch/powerpc/kernel/of_platform.c | |||
@@ -54,16 +54,16 @@ const struct of_device_id of_default_bus_ids[] = { | |||
54 | 54 | ||
55 | static int of_dev_node_match(struct device *dev, void *data) | 55 | static int of_dev_node_match(struct device *dev, void *data) |
56 | { | 56 | { |
57 | return to_of_device(dev)->dev.of_node == data; | 57 | return to_platform_device(dev)->dev.of_node == data; |
58 | } | 58 | } |
59 | 59 | ||
60 | struct of_device *of_find_device_by_node(struct device_node *np) | 60 | struct platform_device *of_find_device_by_node(struct device_node *np) |
61 | { | 61 | { |
62 | struct device *dev; | 62 | struct device *dev; |
63 | 63 | ||
64 | dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match); | 64 | dev = bus_find_device(&platform_bus_type, NULL, np, of_dev_node_match); |
65 | if (dev) | 65 | if (dev) |
66 | return to_of_device(dev); | 66 | return to_platform_device(dev); |
67 | return NULL; | 67 | return NULL; |
68 | } | 68 | } |
69 | EXPORT_SYMBOL(of_find_device_by_node); | 69 | EXPORT_SYMBOL(of_find_device_by_node); |
@@ -76,7 +76,7 @@ EXPORT_SYMBOL(of_find_device_by_node); | |||
76 | * lacking some bits needed here. | 76 | * lacking some bits needed here. |
77 | */ | 77 | */ |
78 | 78 | ||
79 | static int __devinit of_pci_phb_probe(struct of_device *dev, | 79 | static int __devinit of_pci_phb_probe(struct platform_device *dev, |
80 | const struct of_device_id *match) | 80 | const struct of_device_id *match) |
81 | { | 81 | { |
82 | struct pci_controller *phb; | 82 | struct pci_controller *phb; |