Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v2.6.35 15 lines 251 B view raw
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 11#define hwc_debug(fmt, args...) /**/ 12#endif 13 14#endif /* __USBAUDIO_DEBUG_H */ 15