Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e7068da authored by Brian Norris's avatar Brian Norris Committed by Jeff Garzik
Browse files

pata_of_platform: utilize common ata_platform_remove_one()

parent 37e1b022
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -76,11 +76,6 @@ static int __devinit pata_of_platform_probe(struct platform_device *ofdev)
				     reg_shift, pio_mask);
}

static int __devexit pata_of_platform_remove(struct platform_device *ofdev)
{
	return __pata_platform_remove(&ofdev->dev);
}

static struct of_device_id pata_of_platform_match[] = {
	{ .compatible = "ata-generic", },
	{ .compatible = "electra-ide", },
@@ -95,7 +90,7 @@ static struct platform_driver pata_of_platform_driver = {
		.of_match_table = pata_of_platform_match,
	},
	.probe		= pata_of_platform_probe,
	.remove		= __devexit_p(pata_of_platform_remove),
	.remove		= ata_platform_remove_one,
};

module_platform_driver(pata_of_platform_driver);