Daniel Mack | e577999 | 2010-03-04 19:46:13 +0100 | [diff] [blame] | 1 | #ifndef __USBAUDIO_DEBUG_H |
2 | #define __USBAUDIO_DEBUG_H | ||||
3 | |||||
4 | /* | ||||
5 | * h/w constraints | ||||
6 | */ | ||||
7 | |||||
8 | #ifdef HW_CONST_DEBUG | ||||
9 | #define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args) | ||||
10 | #else | ||||
Daniel Mack | 60ed286 | 2011-05-18 11:28:39 +0200 | [diff] [blame] | 11 | #define hwc_debug(fmt, args...) do { } while(0) |
Daniel Mack | e577999 | 2010-03-04 19:46:13 +0100 | [diff] [blame] | 12 | #endif |
13 | |||||
14 | #endif /* __USBAUDIO_DEBUG_H */ | ||||
15 |