summaryrefslogtreecommitdiffstats
path: root/drivers/ata/sata_highbank.c
diff options
context:
space:
mode:
authorBrian Norris2012-12-03 19:34:39 +0100
committerJeff Garzik2012-12-03 19:53:25 +0100
commite2ec1817484d7448af2d8bf8a8acb144f87d5238 (patch)
tree8a98026f831ec550ee80e4ee843e793844cc666f /drivers/ata/sata_highbank.c
parentpata_palmld: utilize common ata_platform_remove_one() (diff)
downloadkernel-qcow2-linux-e2ec1817484d7448af2d8bf8a8acb144f87d5238.tar.gz
kernel-qcow2-linux-e2ec1817484d7448af2d8bf8a8acb144f87d5238.tar.xz
kernel-qcow2-linux-e2ec1817484d7448af2d8bf8a8acb144f87d5238.zip
sata_highbank: utilize common ata_platform_remove_one()
Signed-off-by: Brian Norris <computersforpeace@gmail.com> Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/sata_highbank.c')
-rw-r--r--drivers/ata/sata_highbank.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/ata/sata_highbank.c b/drivers/ata/sata_highbank.c
index 75c0f3cc4a8a..dc7d78eecb19 100644
--- a/drivers/ata/sata_highbank.c
+++ b/drivers/ata/sata_highbank.c
@@ -368,16 +368,6 @@ err0:
return rc;
}
-static int __devexit ahci_highbank_remove(struct platform_device *pdev)
-{
- struct device *dev = &pdev->dev;
- struct ata_host *host = dev_get_drvdata(dev);
-
- ata_host_detach(host);
-
- return 0;
-}
-
#ifdef CONFIG_PM_SLEEP
static int ahci_highbank_suspend(struct device *dev)
{
@@ -432,7 +422,7 @@ SIMPLE_DEV_PM_OPS(ahci_highbank_pm_ops,
ahci_highbank_suspend, ahci_highbank_resume);
static struct platform_driver ahci_highbank_driver = {
- .remove = __devexit_p(ahci_highbank_remove),
+ .remove = ata_platform_remove_one,
.driver = {
.name = "highbank-ahci",
.owner = THIS_MODULE,