debug.h 301 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __USBAUDIO_DEBUG_H
  3. #define __USBAUDIO_DEBUG_H
  4. /*
  5. * h/w constraints
  6. */
  7. #ifdef HW_CONST_DEBUG
  8. #define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
  9. #else
  10. #define hwc_debug(fmt, args...) do { } while(0)
  11. #endif
  12. #endif /* __USBAUDIO_DEBUG_H */