[HDAUDBUS] Silence debug spam

- Demote a DPRINT1 to a DPRINT
- Define NDEBUG
This commit is contained in:
Timo Kreuzer 2023-11-27 22:19:55 +02:00
parent 7fff216bed
commit 2185848fc8
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ HDA_InterruptService(
// Check if this interrupt is ours
InterruptStatus = READ_REGISTER_ULONG((PULONG)(DeviceExtension->RegBase + HDAC_INTR_STATUS));
DPRINT1("HDA_InterruptService %lx\n", InterruptStatus);
DPRINT("HDA_InterruptService %lx\n", InterruptStatus);
if ((InterruptStatus & INTR_STATUS_GLOBAL) == 0)
return FALSE;

View File

@ -9,7 +9,7 @@
// Include Haiku headers
#include "driver.h"
// #define NDEBUG
#define NDEBUG
#include <debug.h>
#define TAG_HDA 'bADH'