debug.h 262 B

123456789101112131415
  1. #ifndef __USBAUDIO_DEBUG_H
  2. #define __USBAUDIO_DEBUG_H
  3. /*
  4. * h/w constraints
  5. */
  6. #ifdef HW_CONST_DEBUG
  7. #define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
  8. #else
  9. #define hwc_debug(fmt, args...) do { } while(0)
  10. #endif
  11. #endif /* __USBAUDIO_DEBUG_H */