summaryrefslogtreecommitdiff
path: root/sys/arch/mac68k/dev
diff options
context:
space:
mode:
authorMartin Reindl <martin@cvs.openbsd.org>2007-01-14 18:50:24 +0000
committerMartin Reindl <martin@cvs.openbsd.org>2007-01-14 18:50:24 +0000
commitc33a29477672628b7f23b059c578844c1530ec61 (patch)
tree68e6ded276e19410736260619f8cae663f4e864d /sys/arch/mac68k/dev
parentf4df7b407c911e4cb3920fdd41d988e12460bd46 (diff)
zsprintf() is gone, fixes ZSMACDEBUG case
Diffstat (limited to 'sys/arch/mac68k/dev')
-rw-r--r--sys/arch/mac68k/dev/zs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/mac68k/dev/zs.c b/sys/arch/mac68k/dev/zs.c
index 2691d85dd17..6eb500b6b0e 100644
--- a/sys/arch/mac68k/dev/zs.c
+++ b/sys/arch/mac68k/dev/zs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: zs.c,v 1.22 2006/01/09 20:56:59 miod Exp $ */
+/* $OpenBSD: zs.c,v 1.23 2007/01/14 18:50:23 martin Exp $ */
/* $NetBSD: zs.c,v 1.19 1998/01/12 19:22:18 thorpej Exp $ */
/*
@@ -661,7 +661,7 @@ zs_set_speed(cs, bps)
}
}
#ifdef ZSMACDEBUG
- zsprintf("Checking for rate %d. Found source #%d.\n",bps, src);
+ printf("Checking for rate %d. Found source #%d.\n",bps, src);
#endif
if (src == -1)
return (EINVAL); /* no can do */
@@ -708,9 +708,9 @@ zs_set_speed(cs, bps)
splx(s);
#ifdef ZSMACDEBUG
- zsprintf("Rate is %7d, tc is %7d, source no. %2d, flags %4x\n", \
+ printf("Rate is %7d, tc is %7d, source no. %2d, flags %4x\n", \
bps, tc, src, sf);
- zsprintf("Registers are: 4 %x, 11 %x, 14 %x\n\n",
+ printf("Registers are: 4 %x, 11 %x, 14 %x\n\n",
cs->cs_preg[4], cs->cs_preg[11], cs->cs_preg[14]);
#endif