diff options
Diffstat (limited to 'drivers/scsi/mvme16x_scsi.c')
-rw-r--r-- | drivers/scsi/mvme16x_scsi.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/scsi/mvme16x_scsi.c b/drivers/scsi/mvme16x_scsi.c index 39f554f5f261..8fbb97a8bfd3 100644 --- a/drivers/scsi/mvme16x_scsi.c +++ b/drivers/scsi/mvme16x_scsi.c | |||
@@ -34,8 +34,7 @@ static struct scsi_host_template mvme16x_scsi_driver_template = { | |||
34 | 34 | ||
35 | static struct platform_device *mvme16x_scsi_device; | 35 | static struct platform_device *mvme16x_scsi_device; |
36 | 36 | ||
37 | static __devinit int | 37 | static int mvme16x_probe(struct platform_device *dev) |
38 | mvme16x_probe(struct platform_device *dev) | ||
39 | { | 38 | { |
40 | struct Scsi_Host * host = NULL; | 39 | struct Scsi_Host * host = NULL; |
41 | struct NCR_700_Host_Parameters *hostdata; | 40 | struct NCR_700_Host_Parameters *hostdata; |
@@ -103,8 +102,7 @@ mvme16x_probe(struct platform_device *dev) | |||
103 | return -ENODEV; | 102 | return -ENODEV; |
104 | } | 103 | } |
105 | 104 | ||
106 | static __devexit int | 105 | static int mvme16x_device_remove(struct platform_device *dev) |
107 | mvme16x_device_remove(struct platform_device *dev) | ||
108 | { | 106 | { |
109 | struct Scsi_Host *host = platform_get_drvdata(dev); | 107 | struct Scsi_Host *host = platform_get_drvdata(dev); |
110 | struct NCR_700_Host_Parameters *hostdata = shost_priv(host); | 108 | struct NCR_700_Host_Parameters *hostdata = shost_priv(host); |
@@ -131,7 +129,7 @@ static struct platform_driver mvme16x_scsi_driver = { | |||
131 | .owner = THIS_MODULE, | 129 | .owner = THIS_MODULE, |
132 | }, | 130 | }, |
133 | .probe = mvme16x_probe, | 131 | .probe = mvme16x_probe, |
134 | .remove = __devexit_p(mvme16x_device_remove), | 132 | .remove = mvme16x_device_remove, |
135 | }; | 133 | }; |
136 | 134 | ||
137 | static int __init mvme16x_scsi_init(void) | 135 | static int __init mvme16x_scsi_init(void) |