aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/xsysace.c
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2010-08-06 11:25:50 -0400
committerGrant Likely <grant.likely@secretlab.ca>2010-08-06 11:25:50 -0400
commit2dc11581376829303b98eadb2de253bee065a56a (patch)
treedbce62559c822cd720d1819a50c488bfecdfa945 /drivers/block/xsysace.c
parentfc1caf6eafb30ea185720e29f7f5eccca61ecd60 (diff)
of/device: Replace struct of_device with struct platform_device
of_device is just an alias for platform_device, so remove it entirely. Also replace to_of_device() with to_platform_device() and update comment blocks. This patch was initially generated from the following semantic patch, and then edited by hand to pick up the bits that coccinelle didn't catch. @@ @@ -struct of_device +struct platform_device Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Reviewed-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/block/xsysace.c')
-rw-r--r--drivers/block/xsysace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/xsysace.c b/drivers/block/xsysace.c
index a7b83c0a7eb5..d7cb69db3067 100644
--- a/drivers/block/xsysace.c
+++ b/drivers/block/xsysace.c
@@ -1188,7 +1188,7 @@ static struct platform_driver ace_platform_driver = {
1188 1188
1189#if defined(CONFIG_OF) 1189#if defined(CONFIG_OF)
1190static int __devinit 1190static int __devinit
1191ace_of_probe(struct of_device *op, const struct of_device_id *match) 1191ace_of_probe(struct platform_device *op, const struct of_device_id *match)
1192{ 1192{
1193 struct resource res; 1193 struct resource res;
1194 resource_size_t physaddr; 1194 resource_size_t physaddr;
@@ -1220,7 +1220,7 @@ ace_of_probe(struct of_device *op, const struct of_device_id *match)
1220 return ace_alloc(&op->dev, id ? *id : 0, physaddr, irq, bus_width); 1220 return ace_alloc(&op->dev, id ? *id : 0, physaddr, irq, bus_width);
1221} 1221}
1222 1222
1223static int __devexit ace_of_remove(struct of_device *op) 1223static int __devexit ace_of_remove(struct platform_device *op)
1224{ 1224{
1225 ace_free(&op->dev); 1225 ace_free(&op->dev);
1226 return 0; 1226 return 0;