cnss2: Omit debug logging code

Signed-off-by: engstk <eng.stk@sapo.pt>
This commit is contained in:
Kristof Petho 2020-05-24 09:34:41 +02:00 committed by Hannes Ylä-Jääski
parent 39783400df
commit c9a92c89a1

View File

@ -23,29 +23,23 @@ extern void *cnss_ipc_log_long_context;
} while (0)
#define cnss_pr_err(_fmt, ...) do { \
printk("%scnss: " _fmt, KERN_ERR, ##__VA_ARGS__); \
cnss_ipc_log_string("%scnss: " _fmt, "", ##__VA_ARGS__);\
no_printk(_fmt, ##__VA_ARGS__); \
} while (0)
#define cnss_pr_warn(_fmt, ...) do { \
printk("%scnss: " _fmt, KERN_WARNING, ##__VA_ARGS__); \
cnss_ipc_log_string("%scnss: " _fmt, "", ##__VA_ARGS__);\
no_printk(_fmt, ##__VA_ARGS__); \
} while (0)
#define cnss_pr_info(_fmt, ...) do { \
printk("%scnss: " _fmt, KERN_INFO, ##__VA_ARGS__); \
cnss_ipc_log_string("%scnss: " _fmt, "", ##__VA_ARGS__);\
no_printk(_fmt, ##__VA_ARGS__); \
} while (0)
#define cnss_pr_dbg(_fmt, ...) do { \
printk("%scnss: " _fmt, KERN_DEBUG, ##__VA_ARGS__); \
cnss_ipc_log_string("%scnss: " _fmt, "", ##__VA_ARGS__);\
no_printk(_fmt, ##__VA_ARGS__); \
} while (0)
#define cnss_pr_vdbg(_fmt, ...) do { \
printk("%scnss: " _fmt, KERN_DEBUG, ##__VA_ARGS__); \
cnss_ipc_log_long_string("%scnss: " _fmt, "", \
##__VA_ARGS__); \
no_printk(_fmt, ##__VA_ARGS__); \
} while (0)
#ifdef CONFIG_CNSS2_DEBUG