Go to the documentation of this file.
35 #ifndef __MUSB_LINUX_DEBUG_H__
36 #define __MUSB_LINUX_DEBUG_H__
38 #define yprintk(facility, format, args...) \
39 do { printk(facility "%s %d: " format , \
40 __func__, __LINE__ , ## args); } while (0)
41 #define WARNING(fmt, args...) yprintk(KERN_WARNING, fmt, ## args)
42 #define INFO(fmt, args...) yprintk(KERN_INFO, fmt, ## args)
43 #define ERR(fmt, args...) yprintk(KERN_ERR, fmt, ## args)
45 #ifdef CONFIG_DEBUG_FS