diff options
author | Christoph Hellwig <hch@lst.de> | 2005-06-28 16:49:44 +0200 |
---|---|---|
committer | James Bottomley <jejb@titanic.(none)> | 2005-07-11 19:43:09 +0200 |
commit | dfd287f6ee9be1e3ae8fe1160c185aac6ca83c6a (patch) | |
tree | 1fbe2c728b84fad009b34693b1b0797e79eca90d /drivers/scsi/aic7xxx/aic7770_osm.c | |
parent | [SCSI] add TYPE_RBC to our type table (diff) | |
download | linux-dfd287f6ee9be1e3ae8fe1160c185aac6ca83c6a.tar.xz linux-dfd287f6ee9be1e3ae8fe1160c185aac6ca83c6a.zip |
[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/aic7770_osm.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic7770_osm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/scsi/aic7xxx/aic7770_osm.c b/drivers/scsi/aic7xxx/aic7770_osm.c index d4ed5e9f830a..70c5fb59c9ea 100644 --- a/drivers/scsi/aic7xxx/aic7770_osm.c +++ b/drivers/scsi/aic7xxx/aic7770_osm.c @@ -102,8 +102,7 @@ aic7770_probe(struct device *dev) dev_set_drvdata(dev, ahc); - if (aic7xxx_detect_complete) - error = ahc_linux_register_host(ahc, &aic7xxx_driver_template); + error = ahc_linux_register_host(ahc, &aic7xxx_driver_template); return (error); } |