diff options
| author | mycroft <mycroft@NetBSD.org> | 1994-03-06 17:18:43 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1994-03-06 17:18:43 +0000 |
| commit | 0c082bcaf80b70abc2db85ab68cedaaac230bfdb (patch) | |
| tree | 7398643ba3714b66260ed339d5ecedb44b7a4cbc /sys/dev/isa/sb.c | |
| parent | a199f44684d3f9699cbd4710682265e20ae1eb51 (diff) | |
DELAY() --> delay(). This is not a macro.
Diffstat (limited to 'sys/dev/isa/sb.c')
| -rw-r--r-- | sys/dev/isa/sb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/sb.c b/sys/dev/isa/sb.c index 9ccb4ce75b8..07e69ae5f6c 100644 --- a/sys/dev/isa/sb.c +++ b/sys/dev/isa/sb.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: sb.c,v 1.4 1994/03/02 16:23:10 hpeyerl Exp $ + * $Id: sb.c,v 1.5 1994/03/06 17:19:16 mycroft Exp $ */ #include "sb.h" @@ -362,7 +362,7 @@ sbreset(register u_long base) * Gee, what a brilliant hardware design. */ outb(base + SBP_DSP_RESET, 1); - DELAY(3); + delay(3); outb(base + SBP_DSP_RESET, 0); if (rdsp(base) != SB_MAGIC) return (-1); @@ -383,7 +383,7 @@ void sb_spkron(struct sb_softc *sc) { (void)wdsp(sc->sc_base, SB_DSP_SPKR_ON); - DELAY(1000); + delay(1000); } /* |
