mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
16 lines
251 B
C
16 lines
251 B
C
|
#ifndef __USBAUDIO_DEBUG_H
|
||
|
#define __USBAUDIO_DEBUG_H
|
||
|
|
||
|
/*
|
||
|
* h/w constraints
|
||
|
*/
|
||
|
|
||
|
#ifdef HW_CONST_DEBUG
|
||
|
#define hwc_debug(fmt, args...) printk(KERN_DEBUG fmt, ##args)
|
||
|
#else
|
||
|
#define hwc_debug(fmt, args...) /**/
|
||
|
#endif
|
||
|
|
||
|
#endif /* __USBAUDIO_DEBUG_H */
|
||
|
|