Go to the documentation of this file.
15 #ifndef S5P_MFC_DEBUG_H_
16 #define S5P_MFC_DEBUG_H_
23 #define mfc_debug(level, fmt, args...) \
26 printk(KERN_DEBUG "%s:%d: " fmt, \
27 __func__, __LINE__, ##args); \
30 #define mfc_debug(level, fmt, args...)
33 #define mfc_debug_enter() mfc_debug(5, "enter")
34 #define mfc_debug_leave() mfc_debug(5, "leave")
36 #define mfc_err(fmt, args...) \
38 printk(KERN_ERR "%s:%d: " fmt, \
39 __func__, __LINE__, ##args); \
42 #define mfc_info(fmt, args...) \
44 printk(KERN_INFO "%s:%d: " fmt, \
45 __func__, __LINE__, ##args); \