summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1999-03-16 13:24:27 +0000
committermycroft <mycroft@NetBSD.org>1999-03-16 13:24:27 +0000
commit28e080a143696ee45a8cd6eb9cee1d8e228cb0af (patch)
treec6cd07bc3e4ec38d4dc453fa4e7c22fdf2214ee5 /sys/dev
parent9e041fd850472382c42e5fa58a36eb563472a5c7 (diff)
Minor fix to some debugging output.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/ess.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/dev/isa/ess.c b/sys/dev/isa/ess.c
index ac41d89c134..8110a6ef9b4 100644
--- a/sys/dev/isa/ess.c
+++ b/sys/dev/isa/ess.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ess.c,v 1.34 1999/03/16 13:06:35 mycroft Exp $ */
+/* $NetBSD: ess.c,v 1.35 1999/03/16 13:24:27 mycroft Exp $ */
/*
* Copyright 1997
@@ -270,14 +270,15 @@ ess_printsc(sc)
(int)sc->sc_open, sc->sc_iobase, sc->out_port,
sc->in_port, sc->spkr_state ? "on" : "off");
- printf("record: dmachan %d irq %d nintr %lu intr %p arg %p\n",
+ printf("audio1: dmachan %d irq %d nintr %lu intr %p arg %p\n",
sc->sc_audio1.drq, sc->sc_audio1.irq, sc->sc_audio1.nintr,
sc->sc_audio1.intr, sc->sc_audio1.arg);
- if (sc->sc_model != ESS_1788)
- printf("play: dmachan %d irq %d nintr %lu intr %p arg %p\n",
+ if (sc->sc_model != ESS_1788) {
+ printf("audio2: dmachan %d irq %d nintr %lu intr %p arg %p\n",
sc->sc_audio2.drq, sc->sc_audio2.irq, sc->sc_audio2.nintr,
sc->sc_audio2.intr, sc->sc_audio2.arg);
+ }
printf("gain:");
for (i = 0; i < sc->ndevs; i++)