diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-04-20 20:23:10 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-04-20 20:23:10 +0000 |
commit | 077c5931125faad0fd35f66d4770047ea969c014 (patch) | |
tree | 34e5f0a3341b8edcdb77534c166dc683eb84c359 | |
parent | 5f978d0e317450a177f6a3601093f95a0d40f0b2 (diff) |
In ahc_reset(), use SELxxx constants instead of magic values. No functional
change.
-rw-r--r-- | sys/dev/ic/aic7xxx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/aic7xxx.c b/sys/dev/ic/aic7xxx.c index 871ce82378b..c1e29ddd8e0 100644 --- a/sys/dev/ic/aic7xxx.c +++ b/sys/dev/ic/aic7xxx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aic7xxx.c,v 1.85 2012/12/05 23:20:16 deraadt Exp $ */ +/* $OpenBSD: aic7xxx.c,v 1.86 2013/04/20 20:23:09 miod Exp $ */ /* $NetBSD: aic7xxx.c,v 1.108 2003/11/02 11:07:44 wiz Exp $ */ /* @@ -40,7 +40,7 @@ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. * - * $Id: aic7xxx.c,v 1.85 2012/12/05 23:20:16 deraadt Exp $ + * $Id: aic7xxx.c,v 1.86 2013/04/20 20:23:09 miod Exp $ */ /* * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc. - April 2003 @@ -4098,11 +4098,11 @@ ahc_reset(struct ahc_softc *ahc, int reinit) case 0: /* Single Narrow Channel */ break; - case 2: + case SELWIDE: /* Wide Channel */ ahc->features |= AHC_WIDE; break; - case 8: + case SELBUSB: /* Twin Channel */ ahc->features |= AHC_TWIN; break; |