summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2013-09-15 09:49:22 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2013-09-15 09:49:22 +0000
commit2298bf8e62b7d4592803e073672592fd76c4f6ff (patch)
tree33b2529b5b8be5890f9c7a07e59fb84eb2f3e790 /sys/arch
parent94d1264024bd3bce075766313525615f970ca8ca (diff)
Replace a hardcoded delay() with ZS_DELAY() to make sun4c happier
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc/dev/zs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/zs.c b/sys/arch/sparc/dev/zs.c
index 07cce7548df..cde41bde908 100644
--- a/sys/arch/sparc/dev/zs.c
+++ b/sys/arch/sparc/dev/zs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: zs.c,v 1.51 2013/07/27 19:45:01 miod Exp $ */
+/* $OpenBSD: zs.c,v 1.52 2013/09/15 09:49:21 miod Exp $ */
/* $NetBSD: zs.c,v 1.50 1997/10/18 00:00:40 gwr Exp $ */
/*-
@@ -750,7 +750,7 @@ zs_putc(arg, c)
* interrupts we put in the 2us delay regardless of cpu model.
*/
zc->zc_data = c;
- delay(2);
+ ZS_DELAY();
splx(s);
}