diff options
Diffstat (limited to 'drivers/ata/pata_pxa.c')
-rw-r--r-- | drivers/ata/pata_pxa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ata/pata_pxa.c b/drivers/ata/pata_pxa.c index 4b8ba559fe24..b0ac9e0c5e01 100644 --- a/drivers/ata/pata_pxa.c +++ b/drivers/ata/pata_pxa.c | |||
@@ -229,7 +229,7 @@ static void pxa_ata_dma_irq(int dma, void *port) | |||
229 | complete(&pd->dma_done); | 229 | complete(&pd->dma_done); |
230 | } | 230 | } |
231 | 231 | ||
232 | static int __devinit pxa_ata_probe(struct platform_device *pdev) | 232 | static int pxa_ata_probe(struct platform_device *pdev) |
233 | { | 233 | { |
234 | struct ata_host *host; | 234 | struct ata_host *host; |
235 | struct ata_port *ap; | 235 | struct ata_port *ap; |
@@ -369,7 +369,7 @@ static int __devinit pxa_ata_probe(struct platform_device *pdev) | |||
369 | return ret; | 369 | return ret; |
370 | } | 370 | } |
371 | 371 | ||
372 | static int __devexit pxa_ata_remove(struct platform_device *pdev) | 372 | static int pxa_ata_remove(struct platform_device *pdev) |
373 | { | 373 | { |
374 | struct ata_host *host = dev_get_drvdata(&pdev->dev); | 374 | struct ata_host *host = dev_get_drvdata(&pdev->dev); |
375 | struct pata_pxa_data *data = host->ports[0]->private_data; | 375 | struct pata_pxa_data *data = host->ports[0]->private_data; |
@@ -383,7 +383,7 @@ static int __devexit pxa_ata_remove(struct platform_device *pdev) | |||
383 | 383 | ||
384 | static struct platform_driver pxa_ata_driver = { | 384 | static struct platform_driver pxa_ata_driver = { |
385 | .probe = pxa_ata_probe, | 385 | .probe = pxa_ata_probe, |
386 | .remove = __devexit_p(pxa_ata_remove), | 386 | .remove = pxa_ata_remove, |
387 | .driver = { | 387 | .driver = { |
388 | .name = DRV_NAME, | 388 | .name = DRV_NAME, |
389 | .owner = THIS_MODULE, | 389 | .owner = THIS_MODULE, |