From 352668d43179ea91aaa311a542abfd335746dad4 Mon Sep 17 00:00:00 2001 From: Simon Schubert Date: Fri, 23 Jan 2009 01:22:25 +0100 Subject: [PATCH] hda: disable verbose output - too chatty even for bootverbose --- sys/dev/sound/pci/hda/hdac.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/dev/sound/pci/hda/hdac.c b/sys/dev/sound/pci/hda/hdac.c index 1494bce547..7b273ea0f1 100644 --- a/sys/dev/sound/pci/hda/hdac.c +++ b/sys/dev/sound/pci/hda/hdac.c @@ -89,8 +89,13 @@ SND_DECLARE_FILE("$DragonFly: src/sys/dev/sound/pci/hda/hdac.c,v 1.14 2007/12/01 08:32:11 hasso Exp $"); +static int hda_debug +#ifdef HDA_DEBUG + = 1 +#endif + ; #define HDA_BOOTVERBOSE(stmt) do { \ - if (bootverbose != 0) { \ + if (hda_debug && bootverbose != 0) { \ stmt \ } \ } while(0) -- 2.41.0