diff options
author | Christoph Hellwig <hch@lst.de> | 2005-06-28 10:50:40 -0400 |
---|---|---|
committer | James Bottomley <jejb@titanic.(none)> | 2005-07-11 13:47:47 -0400 |
commit | 2a40342e0e72a2ba89aaa9e6c9a9eceb04741b24 (patch) | |
tree | cda0577cc5348df8e4662b9615af7941852be3a3 /drivers/scsi/aic7xxx/aic7770.c | |
parent | dfd287f6ee9be1e3ae8fe1160c185aac6ca83c6a (diff) |
[SCSI] aic7xxx: remove ahc_tailq
now that we do normal PCI probing there's no need to keep a list of
all HBAs.
Rejections fixed up and
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/aic7xxx/aic7770.c')
-rw-r--r-- | drivers/scsi/aic7xxx/aic7770.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/scsi/aic7xxx/aic7770.c b/drivers/scsi/aic7xxx/aic7770.c index 92703bb35982..00f3bd1e181e 100644 --- a/drivers/scsi/aic7xxx/aic7770.c +++ b/drivers/scsi/aic7xxx/aic7770.c | |||
@@ -254,19 +254,12 @@ aic7770_config(struct ahc_softc *ahc, struct aic7770_identity *entry, u_int io) | |||
254 | if (error != 0) | 254 | if (error != 0) |
255 | return (error); | 255 | return (error); |
256 | 256 | ||
257 | ahc_list_lock(&l); | 257 | ahc->init_level++; |
258 | /* | ||
259 | * Link this softc in with all other ahc instances. | ||
260 | */ | ||
261 | ahc_softc_insert(ahc); | ||
262 | 258 | ||
263 | /* | 259 | /* |
264 | * Enable the board's BUS drivers | 260 | * Enable the board's BUS drivers |
265 | */ | 261 | */ |
266 | ahc_outb(ahc, BCTL, ENABLE); | 262 | ahc_outb(ahc, BCTL, ENABLE); |
267 | |||
268 | ahc_list_unlock(&l); | ||
269 | |||
270 | return (0); | 263 | return (0); |
271 | } | 264 | } |
272 | 265 | ||