diff options
Diffstat (limited to 'drivers/scsi/stex.c')
-rw-r--r-- | drivers/scsi/stex.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/scsi/stex.c b/drivers/scsi/stex.c index 606215e54b88..325c31caa6e0 100644 --- a/drivers/scsi/stex.c +++ b/drivers/scsi/stex.c | |||
@@ -1540,8 +1540,7 @@ static void stex_free_irq(struct st_hba *hba) | |||
1540 | pci_disable_msi(pdev); | 1540 | pci_disable_msi(pdev); |
1541 | } | 1541 | } |
1542 | 1542 | ||
1543 | static int __devinit | 1543 | static int stex_probe(struct pci_dev *pdev, const struct pci_device_id *id) |
1544 | stex_probe(struct pci_dev *pdev, const struct pci_device_id *id) | ||
1545 | { | 1544 | { |
1546 | struct st_hba *hba; | 1545 | struct st_hba *hba; |
1547 | struct Scsi_Host *host; | 1546 | struct Scsi_Host *host; |
@@ -1815,7 +1814,7 @@ static struct pci_driver stex_pci_driver = { | |||
1815 | .name = DRV_NAME, | 1814 | .name = DRV_NAME, |
1816 | .id_table = stex_pci_tbl, | 1815 | .id_table = stex_pci_tbl, |
1817 | .probe = stex_probe, | 1816 | .probe = stex_probe, |
1818 | .remove = __devexit_p(stex_remove), | 1817 | .remove = stex_remove, |
1819 | .shutdown = stex_shutdown, | 1818 | .shutdown = stex_shutdown, |
1820 | }; | 1819 | }; |
1821 | 1820 | ||