diff options
author | Christoph Hellwig <hch@lst.de> | 2005-06-28 10:49:44 -0400 |
---|---|---|
committer | James Bottomley <jejb@titanic.(none)> | 2005-07-11 13:43:09 -0400 |
commit | dfd287f6ee9be1e3ae8fe1160c185aac6ca83c6a (patch) | |
tree | 1fbe2c728b84fad009b34693b1b0797e79eca90d /drivers/scsi/aic7xxx/aic7xxx_osm_pci.c | |
parent | 7f602c53939fdb1bca12151a28f9b90cde046fb1 (diff) |
[SCSI] aic7xxx: sane pci probing
always probe in bus order, avoid any reordering
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/aic7xxx/aic7xxx_osm_pci.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic7xxx_osm_pci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c b/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c index 89d737ee551a..45ad438c9943 100644 --- a/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c +++ b/drivers/scsi/aic7xxx/aic7xxx_osm_pci.c | |||
@@ -208,8 +208,7 @@ ahc_linux_pci_dev_probe(struct pci_dev *pdev, const struct pci_device_id *ent) | |||
208 | return (-error); | 208 | return (-error); |
209 | } | 209 | } |
210 | pci_set_drvdata(pdev, ahc); | 210 | pci_set_drvdata(pdev, ahc); |
211 | if (aic7xxx_detect_complete) | 211 | ahc_linux_register_host(ahc, &aic7xxx_driver_template); |
212 | ahc_linux_register_host(ahc, &aic7xxx_driver_template); | ||
213 | return (0); | 212 | return (0); |
214 | } | 213 | } |
215 | 214 | ||