From: Simon Schubert Date: Fri, 23 Jan 2009 00:22:25 +0000 (+0100) Subject: hda: disable verbose output - too chatty even for bootverbose X-Git-Tag: v2.3.0~12^2~1 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/352668d43179ea91aaa311a542abfd335746dad4 hda: disable verbose output - too chatty even for bootverbose --- 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)