]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ahci_platform: utilize common ata_platform_remove_one()
authorBrian Norris <computersforpeace@gmail.com>
Fri, 2 Nov 2012 07:46:19 +0000 (00:46 -0700)
committerJeff Garzik <jgarzik@redhat.com>
Mon, 3 Dec 2012 10:15:19 +0000 (05:15 -0500)
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/ata/ahci_platform.c

index 5aa4309d4481370dd12648907b07d9432a2a682f..1d90690d85f7a0cefdeb44f5490c7e41943f574b 100644 (file)
@@ -229,16 +229,6 @@ free_clk:
        return rc;
 }
 
-static int __devexit ahci_remove(struct platform_device *pdev)
-{
-       struct device *dev = &pdev->dev;
-       struct ata_host *host = dev_get_drvdata(dev);
-
-       ata_host_detach(host);
-
-       return 0;
-}
-
 static void ahci_host_stop(struct ata_host *host)
 {
        struct device *dev = host->dev;
@@ -343,7 +333,7 @@ MODULE_DEVICE_TABLE(of, ahci_of_match);
 
 static struct platform_driver ahci_driver = {
        .probe = ahci_probe,
-       .remove = __devexit_p(ahci_remove),
+       .remove = ata_platform_remove_one,
        .driver = {
                .name = "ahci",
                .owner = THIS_MODULE,