diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-21 17:52:35 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-21 17:52:35 +0000 |
commit | 0397c3c203572dc812d6d518442f187b0deb7418 (patch) | |
tree | 36980c2e38f388f4dbe9e38f7af80b415c9641f5 /sys/arch/hp300 | |
parent | c9f5d34894a9a742284411840613c133370cd5ff (diff) |
Missing DELAY.
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/dev/mb89352.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hp300/dev/mb89352.c b/sys/arch/hp300/dev/mb89352.c index 4e250780c7e..e40c02d987c 100644 --- a/sys/arch/hp300/dev/mb89352.c +++ b/sys/arch/hp300/dev/mb89352.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mb89352.c,v 1.3 2004/08/19 10:18:41 miod Exp $ */ +/* $OpenBSD: mb89352.c,v 1.4 2004/08/21 17:52:34 miod Exp $ */ /* $NetBSD: mb89352.c,v 1.5 2000/03/23 07:01:31 thorpej Exp $ */ /* NecBSD: mb89352.c,v 1.4 1998/03/14 07:31:20 kmatsuda Exp */ @@ -1240,7 +1240,7 @@ nextbyte: #endif while ((spc_read(SSTS) & SSTS_DREG_FULL) != 0) - ; + DELAY(1); /* Send message byte. */ spc_write(DREG, *--sc->sc_omp); --n; |