diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2010-07-22 15:59:23 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-07-24 11:58:21 -0400 |
commit | 94a0cb1fc61ab7a0d47d268a7764374efeb2160b (patch) | |
tree | c7da45e6023c77471e18215fb14eab1bc83739fa /drivers/of | |
parent | c1b6d380b781b5238989a4bfba02450057670804 (diff) |
of/device: Replace of_device with platform_device in includes and core code
of_device is currently just an #define alias to platform_device until it
gets removed entirely. This patch removes references to it from the
include directories and the core drivers/of code.
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/of')
-rw-r--r-- | drivers/of/device.c | 22 | ||||
-rw-r--r-- | drivers/of/platform.c | 24 |
2 files changed, 23 insertions, 23 deletions
diff --git a/drivers/of/device.c b/drivers/of/device.c index 12a44b493511..0d8a0644f540 100644 --- a/drivers/of/device.c +++ b/drivers/of/device.c | |||
@@ -26,7 +26,7 @@ const struct of_device_id *of_match_device(const struct of_device_id *matches, | |||
26 | } | 26 | } |
27 | EXPORT_SYMBOL(of_match_device); | 27 | EXPORT_SYMBOL(of_match_device); |
28 | 28 | ||
29 | struct of_device *of_dev_get(struct of_device *dev) | 29 | struct platform_device *of_dev_get(struct platform_device *dev) |
30 | { | 30 | { |
31 | struct device *tmp; | 31 | struct device *tmp; |
32 | 32 | ||
@@ -34,13 +34,13 @@ struct of_device *of_dev_get(struct of_device *dev) | |||
34 | return NULL; | 34 | return NULL; |
35 | tmp = get_device(&dev->dev); | 35 | tmp = get_device(&dev->dev); |
36 | if (tmp) | 36 | if (tmp) |
37 | return to_of_device(tmp); | 37 | return to_platform_device(tmp); |
38 | else | 38 | else |
39 | return NULL; | 39 | return NULL; |
40 | } | 40 | } |
41 | EXPORT_SYMBOL(of_dev_get); | 41 | EXPORT_SYMBOL(of_dev_get); |
42 | 42 | ||
43 | void of_dev_put(struct of_device *dev) | 43 | void of_dev_put(struct platform_device *dev) |
44 | { | 44 | { |
45 | if (dev) | 45 | if (dev) |
46 | put_device(&dev->dev); | 46 | put_device(&dev->dev); |
@@ -50,18 +50,18 @@ EXPORT_SYMBOL(of_dev_put); | |||
50 | static ssize_t devspec_show(struct device *dev, | 50 | static ssize_t devspec_show(struct device *dev, |
51 | struct device_attribute *attr, char *buf) | 51 | struct device_attribute *attr, char *buf) |
52 | { | 52 | { |
53 | struct of_device *ofdev; | 53 | struct platform_device *ofdev; |
54 | 54 | ||
55 | ofdev = to_of_device(dev); | 55 | ofdev = to_platform_device(dev); |
56 | return sprintf(buf, "%s\n", ofdev->dev.of_node->full_name); | 56 | return sprintf(buf, "%s\n", ofdev->dev.of_node->full_name); |
57 | } | 57 | } |
58 | 58 | ||
59 | static ssize_t name_show(struct device *dev, | 59 | static ssize_t name_show(struct device *dev, |
60 | struct device_attribute *attr, char *buf) | 60 | struct device_attribute *attr, char *buf) |
61 | { | 61 | { |
62 | struct of_device *ofdev; | 62 | struct platform_device *ofdev; |
63 | 63 | ||
64 | ofdev = to_of_device(dev); | 64 | ofdev = to_platform_device(dev); |
65 | return sprintf(buf, "%s\n", ofdev->dev.of_node->name); | 65 | return sprintf(buf, "%s\n", ofdev->dev.of_node->name); |
66 | } | 66 | } |
67 | 67 | ||
@@ -90,15 +90,15 @@ struct device_attribute of_platform_device_attrs[] = { | |||
90 | */ | 90 | */ |
91 | void of_release_dev(struct device *dev) | 91 | void of_release_dev(struct device *dev) |
92 | { | 92 | { |
93 | struct of_device *ofdev; | 93 | struct platform_device *ofdev; |
94 | 94 | ||
95 | ofdev = to_of_device(dev); | 95 | ofdev = to_platform_device(dev); |
96 | of_node_put(ofdev->dev.of_node); | 96 | of_node_put(ofdev->dev.of_node); |
97 | kfree(ofdev); | 97 | kfree(ofdev); |
98 | } | 98 | } |
99 | EXPORT_SYMBOL(of_release_dev); | 99 | EXPORT_SYMBOL(of_release_dev); |
100 | 100 | ||
101 | int of_device_register(struct of_device *ofdev) | 101 | int of_device_register(struct platform_device *ofdev) |
102 | { | 102 | { |
103 | BUG_ON(ofdev->dev.of_node == NULL); | 103 | BUG_ON(ofdev->dev.of_node == NULL); |
104 | 104 | ||
@@ -119,7 +119,7 @@ int of_device_register(struct of_device *ofdev) | |||
119 | } | 119 | } |
120 | EXPORT_SYMBOL(of_device_register); | 120 | EXPORT_SYMBOL(of_device_register); |
121 | 121 | ||
122 | void of_device_unregister(struct of_device *ofdev) | 122 | void of_device_unregister(struct platform_device *ofdev) |
123 | { | 123 | { |
124 | device_unregister(&ofdev->dev); | 124 | device_unregister(&ofdev->dev); |
125 | } | 125 | } |
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index f3f1ec81ef48..9f3840cdcde5 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c | |||
@@ -94,11 +94,11 @@ static int of_platform_device_probe(struct device *dev) | |||
94 | { | 94 | { |
95 | int error = -ENODEV; | 95 | int error = -ENODEV; |
96 | struct of_platform_driver *drv; | 96 | struct of_platform_driver *drv; |
97 | struct of_device *of_dev; | 97 | struct platform_device *of_dev; |
98 | const struct of_device_id *match; | 98 | const struct of_device_id *match; |
99 | 99 | ||
100 | drv = to_of_platform_driver(dev->driver); | 100 | drv = to_of_platform_driver(dev->driver); |
101 | of_dev = to_of_device(dev); | 101 | of_dev = to_platform_device(dev); |
102 | 102 | ||
103 | if (!drv->probe) | 103 | if (!drv->probe) |
104 | return error; | 104 | return error; |
@@ -116,7 +116,7 @@ static int of_platform_device_probe(struct device *dev) | |||
116 | 116 | ||
117 | static int of_platform_device_remove(struct device *dev) | 117 | static int of_platform_device_remove(struct device *dev) |
118 | { | 118 | { |
119 | struct of_device *of_dev = to_of_device(dev); | 119 | struct platform_device *of_dev = to_platform_device(dev); |
120 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); | 120 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); |
121 | 121 | ||
122 | if (dev->driver && drv->remove) | 122 | if (dev->driver && drv->remove) |
@@ -126,7 +126,7 @@ static int of_platform_device_remove(struct device *dev) | |||
126 | 126 | ||
127 | static void of_platform_device_shutdown(struct device *dev) | 127 | static void of_platform_device_shutdown(struct device *dev) |
128 | { | 128 | { |
129 | struct of_device *of_dev = to_of_device(dev); | 129 | struct platform_device *of_dev = to_platform_device(dev); |
130 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); | 130 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); |
131 | 131 | ||
132 | if (dev->driver && drv->shutdown) | 132 | if (dev->driver && drv->shutdown) |
@@ -137,7 +137,7 @@ static void of_platform_device_shutdown(struct device *dev) | |||
137 | 137 | ||
138 | static int of_platform_legacy_suspend(struct device *dev, pm_message_t mesg) | 138 | static int of_platform_legacy_suspend(struct device *dev, pm_message_t mesg) |
139 | { | 139 | { |
140 | struct of_device *of_dev = to_of_device(dev); | 140 | struct platform_device *of_dev = to_platform_device(dev); |
141 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); | 141 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); |
142 | int ret = 0; | 142 | int ret = 0; |
143 | 143 | ||
@@ -148,7 +148,7 @@ static int of_platform_legacy_suspend(struct device *dev, pm_message_t mesg) | |||
148 | 148 | ||
149 | static int of_platform_legacy_resume(struct device *dev) | 149 | static int of_platform_legacy_resume(struct device *dev) |
150 | { | 150 | { |
151 | struct of_device *of_dev = to_of_device(dev); | 151 | struct platform_device *of_dev = to_platform_device(dev); |
152 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); | 152 | struct of_platform_driver *drv = to_of_platform_driver(dev->driver); |
153 | int ret = 0; | 153 | int ret = 0; |
154 | 154 | ||
@@ -543,11 +543,11 @@ static void of_device_make_bus_id(struct device *dev) | |||
543 | * @bus_id: Name to assign to the device. May be null to use default name. | 543 | * @bus_id: Name to assign to the device. May be null to use default name. |
544 | * @parent: Parent device. | 544 | * @parent: Parent device. |
545 | */ | 545 | */ |
546 | struct of_device *of_device_alloc(struct device_node *np, | 546 | struct platform_device *of_device_alloc(struct device_node *np, |
547 | const char *bus_id, | 547 | const char *bus_id, |
548 | struct device *parent) | 548 | struct device *parent) |
549 | { | 549 | { |
550 | struct of_device *dev; | 550 | struct platform_device *dev; |
551 | int rc, i, num_reg = 0, num_irq = 0; | 551 | int rc, i, num_reg = 0, num_irq = 0; |
552 | struct resource *res, temp_res; | 552 | struct resource *res, temp_res; |
553 | 553 | ||
@@ -600,11 +600,11 @@ EXPORT_SYMBOL(of_device_alloc); | |||
600 | * @bus_id: name to assign device | 600 | * @bus_id: name to assign device |
601 | * @parent: Linux device model parent device. | 601 | * @parent: Linux device model parent device. |
602 | */ | 602 | */ |
603 | struct of_device *of_platform_device_create(struct device_node *np, | 603 | struct platform_device *of_platform_device_create(struct device_node *np, |
604 | const char *bus_id, | 604 | const char *bus_id, |
605 | struct device *parent) | 605 | struct device *parent) |
606 | { | 606 | { |
607 | struct of_device *dev; | 607 | struct platform_device *dev; |
608 | 608 | ||
609 | dev = of_device_alloc(np, bus_id, parent); | 609 | dev = of_device_alloc(np, bus_id, parent); |
610 | if (!dev) | 610 | if (!dev) |
@@ -642,7 +642,7 @@ static int of_platform_bus_create(const struct device_node *bus, | |||
642 | struct device *parent) | 642 | struct device *parent) |
643 | { | 643 | { |
644 | struct device_node *child; | 644 | struct device_node *child; |
645 | struct of_device *dev; | 645 | struct platform_device *dev; |
646 | int rc = 0; | 646 | int rc = 0; |
647 | 647 | ||
648 | for_each_child_of_node(bus, child) { | 648 | for_each_child_of_node(bus, child) { |
@@ -678,7 +678,7 @@ int of_platform_bus_probe(struct device_node *root, | |||
678 | struct device *parent) | 678 | struct device *parent) |
679 | { | 679 | { |
680 | struct device_node *child; | 680 | struct device_node *child; |
681 | struct of_device *dev; | 681 | struct platform_device *dev; |
682 | int rc = 0; | 682 | int rc = 0; |
683 | 683 | ||
684 | if (matches == NULL) | 684 | if (matches == NULL) |