aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/mac_esp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/scsi/mac_esp.c')
-rw-r--r--drivers/scsi/mac_esp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/mac_esp.c b/drivers/scsi/mac_esp.c
index 70eb1f79b1ba..994fc5caf036 100644
--- a/drivers/scsi/mac_esp.c
+++ b/drivers/scsi/mac_esp.c
@@ -481,7 +481,7 @@ static struct esp_driver_ops mac_esp_ops = {
481 .dma_error = mac_esp_dma_error, 481 .dma_error = mac_esp_dma_error,
482}; 482};
483 483
484static int __devinit esp_mac_probe(struct platform_device *dev) 484static int esp_mac_probe(struct platform_device *dev)
485{ 485{
486 struct scsi_host_template *tpnt = &scsi_esp_template; 486 struct scsi_host_template *tpnt = &scsi_esp_template;
487 struct Scsi_Host *host; 487 struct Scsi_Host *host;
@@ -591,7 +591,7 @@ fail:
591 return err; 591 return err;
592} 592}
593 593
594static int __devexit esp_mac_remove(struct platform_device *dev) 594static int esp_mac_remove(struct platform_device *dev)
595{ 595{
596 struct mac_esp_priv *mep = platform_get_drvdata(dev); 596 struct mac_esp_priv *mep = platform_get_drvdata(dev);
597 struct esp *esp = mep->esp; 597 struct esp *esp = mep->esp;
@@ -614,7 +614,7 @@ static int __devexit esp_mac_remove(struct platform_device *dev)
614 614
615static struct platform_driver esp_mac_driver = { 615static struct platform_driver esp_mac_driver = {
616 .probe = esp_mac_probe, 616 .probe = esp_mac_probe,
617 .remove = __devexit_p(esp_mac_remove), 617 .remove = esp_mac_remove,
618 .driver = { 618 .driver = {
619 .name = DRV_MODULE_NAME, 619 .name = DRV_MODULE_NAME,
620 .owner = THIS_MODULE, 620 .owner = THIS_MODULE,