1 /* 2 * ice1712 BeOS/Haiku Driver for VIA - VT1712 Multi Channel Audio Controller 3 * 4 * Copyright (c) 2002, Jerome Duval (jerome.duval@free.fr) 5 * Copyright (c) 2003, Marcus Overhagen (marcus@overhagen.de) 6 * Copyright (c) 2007, Jerome Leveque (leveque.jerome@neuf.fr) 7 * 8 * All rights reserved 9 * Distributed under the terms of the MIT license. 10 */ 11 #ifndef _DEBUG_ICE1712_H_ 12 #define _DEBUG_ICE1712_H_ 13 14 #include <Debug.h> 15 16 #ifdef TRACE 17 # undef TRACE 18 #endif 19 20 #define TRACE_MULTI_AUDIO 21 #ifdef TRACE_MULTI_AUDIO 22 # define TRACE(a...) dprintf("\33[34mice1712:\33[0m " a) 23 #else 24 # define TRACE(a...) ; 25 #endif 26 27 #define ICE1712_VERY_VERBOSE 0 28 29 #endif // _DEBUG_ICE1712_H_ 30