diff options
author | 2001-08-06 14:29:59 +0000 | |
---|---|---|
committer | 2001-08-06 14:29:59 +0000 | |
commit | 45dd91cce76a7847c818ce66ee417390dd7198ac (patch) | |
tree | feb616076dd453840545ea71e05d58173ef45213 | |
parent | Add a new type voff_t (right now it's typedefed as off_t) used for offsets (diff) | |
download | wireguard-openbsd-45dd91cce76a7847c818ce66ee417390dd7198ac.tar.xz wireguard-openbsd-45dd91cce76a7847c818ce66ee417390dd7198ac.zip |
Fix errant reference to DEBUG_INTR to use correct SIOP_DEBUG_INTR.
Eliminates conflict with same name in wdc.c.
Spotted by Heikki Korpela.
-rw-r--r-- | sys/dev/ic/siop_common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/siop_common.c b/sys/dev/ic/siop_common.c index a067860bf67..67df285313e 100644 --- a/sys/dev/ic/siop_common.c +++ b/sys/dev/ic/siop_common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: siop_common.c,v 1.8 2001/06/25 23:14:40 krw Exp $ */ +/* $OpenBSD: siop_common.c,v 1.9 2001/08/06 14:29:59 krw Exp $ */ /* $NetBSD: siop_common.c,v 1.12 2001/02/11 18:04:50 bouyer Exp $ */ /* @@ -584,7 +584,7 @@ siop_clearfifo(sc) int timeout = 0; int ctest3 = bus_space_read_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3); -#ifdef DEBUG_INTR +#ifdef SIOP_DEBUG_INTR printf("DMA fifo not empty!\n"); #endif bus_space_write_1(sc->sc_rt, sc->sc_rh, SIOP_CTEST3, |