diff options
author | Brian Norris <computersforpeace@gmail.com> | 2012-11-02 00:46:25 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-12-03 05:15:35 -0500 |
commit | 56c1d3b77fc83939ab530b8a871e00176fc5b583 (patch) | |
tree | 114335beab711991ddc42edded9785c89e1e5d23 | |
parent | 156f34d26a74c6ea060fb43d898f17509ed8e18a (diff) | |
download | op-kernel-dev-56c1d3b77fc83939ab530b8a871e00176fc5b583.zip op-kernel-dev-56c1d3b77fc83939ab530b8a871e00176fc5b583.tar.gz |
pata_palmld: utilize common ata_platform_remove_one()
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/ata/pata_palmld.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/ata/pata_palmld.c b/drivers/ata/pata_palmld.c index 5ff31b6..f9f79fc 100644 --- a/drivers/ata/pata_palmld.c +++ b/drivers/ata/pata_palmld.c @@ -111,9 +111,7 @@ err1: static __devexit int palmld_pata_remove(struct platform_device *dev) { - struct ata_host *host = platform_get_drvdata(dev); - - ata_host_detach(host); + ata_platform_remove_one(dev); /* power down the HDD */ gpio_set_value(GPIO_NR_PALMLD_IDE_PWEN, 0); |