diff options
author | gibbs <gibbs@FreeBSD.org> | 1999-03-05 23:28:42 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1999-03-05 23:28:42 +0000 |
commit | 090e44812f2681bb34bd1ee498e9e05f8ee7610c (patch) | |
tree | 9440fac624a7f0cefadf4c80748b18e9a6bab9fd /sys/dev/aic7xxx/ahc_eisa.c | |
parent | c832f918ada9491d709344132283c98ed2e4f90a (diff) | |
download | FreeBSD-src-090e44812f2681bb34bd1ee498e9e05f8ee7610c.zip FreeBSD-src-090e44812f2681bb34bd1ee498e9e05f8ee7610c.tar.gz |
Modify to deal with changes in the storage of user negotiation settings.
Diffstat (limited to 'sys/dev/aic7xxx/ahc_eisa.c')
-rw-r--r-- | sys/dev/aic7xxx/ahc_eisa.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/dev/aic7xxx/ahc_eisa.c b/sys/dev/aic7xxx/ahc_eisa.c index 039878d..cdfd7b9 100644 --- a/sys/dev/aic7xxx/ahc_eisa.c +++ b/sys/dev/aic7xxx/ahc_eisa.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: ahc_eisa.c,v 1.3 1998/10/15 18:21:50 gibbs Exp $ + * $Id: ahc_eisa.c,v 1.4 1998/12/15 08:24:45 gibbs Exp $ */ #include "eisa.h" @@ -439,7 +439,9 @@ aha2840_load_seeprom(struct ahc_softc *ahc) */ int i; int max_targ = (ahc->features & AHC_WIDE) != 0 ? 16 : 8; + u_int16_t discenable; + discenable = 0; for (i = 0; i < max_targ; i++){ u_int8_t target_settings; target_settings = (sc.device_flags[i] & CFXFER) << 4; @@ -448,11 +450,11 @@ aha2840_load_seeprom(struct ahc_softc *ahc) if (sc.device_flags[i] & CFWIDEB) target_settings |= WIDEXFER; if (sc.device_flags[i] & CFDISC) - ahc->discenable |= (0x01 << i); + discenable |= (0x01 << i); ahc_outb(ahc, TARG_SCSIRATE + i, target_settings); } - ahc_outb(ahc, DISC_DSB, ~(ahc->discenable & 0xff)); - ahc_outb(ahc, DISC_DSB + 1, ~((ahc->discenable >> 8) & 0xff)); + ahc_outb(ahc, DISC_DSB, ~(discenable & 0xff)); + ahc_outb(ahc, DISC_DSB + 1, ~((discenable >> 8) & 0xff)); ahc->our_id = sc.brtime_id & CFSCSIID; |