Commit 37e1b022 authored by Brian Norris's avatar Brian Norris Committed by Jeff Garzik

pata_mpc52xx: utilize common ata_platform_remove_one()

Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 58d0ff2f
...@@ -663,18 +663,6 @@ mpc52xx_ata_init_one(struct device *dev, struct mpc52xx_ata_priv *priv, ...@@ -663,18 +663,6 @@ mpc52xx_ata_init_one(struct device *dev, struct mpc52xx_ata_priv *priv,
&mpc52xx_ata_sht); &mpc52xx_ata_sht);
} }
static struct mpc52xx_ata_priv *
mpc52xx_ata_remove_one(struct device *dev)
{
struct ata_host *host = dev_get_drvdata(dev);
struct mpc52xx_ata_priv *priv = host->private_data;
ata_host_detach(host);
return priv;
}
/* ======================================================================== */ /* ======================================================================== */
/* OF Platform driver */ /* OF Platform driver */
/* ======================================================================== */ /* ======================================================================== */
...@@ -815,11 +803,12 @@ mpc52xx_ata_probe(struct platform_device *op) ...@@ -815,11 +803,12 @@ mpc52xx_ata_probe(struct platform_device *op)
static int static int
mpc52xx_ata_remove(struct platform_device *op) mpc52xx_ata_remove(struct platform_device *op)
{ {
struct mpc52xx_ata_priv *priv; struct ata_host *host = platform_get_drvdata(op);
struct mpc52xx_ata_priv *priv = host->private_data;
int task_irq; int task_irq;
/* Deregister the ATA interface */ /* Deregister the ATA interface */
priv = mpc52xx_ata_remove_one(&op->dev); ata_platform_remove_one(op);
/* Clean up DMA */ /* Clean up DMA */
task_irq = bcom_get_task_irq(priv->dmatsk); task_irq = bcom_get_task_irq(priv->dmatsk);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment