diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-25 21:46:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-06-25 21:46:26 +0000 |
commit | cead827526651fefa3448de93a872c32fd0691ca (patch) | |
tree | e9bbfedfc797e0520264bbcf7430c50aea83761c /sys/arch/sparc | |
parent | 621dcd188e5cca868b7b0e6c901afc2144009db8 (diff) |
We want address incrementation disabled, so correctly ask for it...
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/dev/ts102.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/ts102.c b/sys/arch/sparc/dev/ts102.c index fbe8d2deecc..8c408fed381 100644 --- a/sys/arch/sparc/dev/ts102.c +++ b/sys/arch/sparc/dev/ts102.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ts102.c,v 1.5 2003/06/25 19:21:19 miod Exp $ */ +/* $OpenBSD: ts102.c,v 1.6 2003/06/25 21:46:25 miod Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * @@ -335,7 +335,7 @@ tslot_reset(struct tslot_data *td, u_int32_t iosize) ctl &= ~TS102_CARD_CTL_PCMBE; /* disable read ahead and address increment */ ctl &= ~TS102_CARD_CTL_RAHD; - ctl &= ~TS102_CARD_CTL_INCDIS; + ctl |= TS102_CARD_CTL_INCDIS; /* power on */ ctl &= ~TS102_CARD_CTL_PWRD; TSLOT_WRITE(td, TS102_REG_CARD_A_CTL, ctl); |