mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
[HDAUDBUS] Silence debug spam
- Demote a DPRINT1 to a DPRINT - Define NDEBUG
This commit is contained in:
parent
7fff216bed
commit
2185848fc8
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ HDA_InterruptService(
|
||||||
// Check if this interrupt is ours
|
// Check if this interrupt is ours
|
||||||
InterruptStatus = READ_REGISTER_ULONG((PULONG)(DeviceExtension->RegBase + HDAC_INTR_STATUS));
|
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)
|
if ((InterruptStatus & INTR_STATUS_GLOBAL) == 0)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
// Include Haiku headers
|
// Include Haiku headers
|
||||||
#include "driver.h"
|
#include "driver.h"
|
||||||
|
|
||||||
// #define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
#define TAG_HDA 'bADH'
|
#define TAG_HDA 'bADH'
|
||||||
|
|
Loading…
Reference in a new issue