aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1997-11-05 00:23:26 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1997-11-05 00:23:26 +0000
commitdc185d2298e0079d9c598c9b56cf7d29645454d9 (patch)
treebda962ed4de67447656b7dba898559e0a574b6a6 /sys
parent8138f333086457615c4d8f411e6ac1e08350d2b2 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/isa/sound/soundcard.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/i386/isa/sound/soundcard.c b/sys/i386/isa/sound/soundcard.c
index 37601f0814a07..a653a5385ea35 100644
--- a/sys/i386/isa/sound/soundcard.c
+++ b/sys/i386/isa/sound/soundcard.c
@@ -542,7 +542,8 @@ conf_printf(char *name, struct address_info * hw_config)
if (!trace_init)
return;
- printf("<%s> ", name);
+ printf("snd0: <%s> ", name);
+#if 0
if (hw_config->io_base != -1 )
printf("at 0x%03x", hw_config->io_base);
@@ -554,7 +555,7 @@ conf_printf(char *name, struct address_info * hw_config)
if (hw_config->dma2 != -1)
printf(",%d", hw_config->dma2);
}
-
+#endif
}
@@ -564,7 +565,10 @@ conf_printf2(char *name, int base, int irq, int dma, int dma2)
if (!trace_init)
return;
- printf("<%s> at 0x%03x", name, base);
+ printf("snd0: <%s> ", name);
+#if 0
+ if (hw_config->io_base != -1 )
+ printf("at 0x%03x", hw_config->io_base);
if (irq)
printf(" irq %d", irq);
@@ -574,7 +578,7 @@ conf_printf2(char *name, int base, int irq, int dma, int dma2)
if (dma2 != -1)
printf(",%d", dma2);
}
-
+#endif
}