Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6faf3f8 authored by Konstantin Dorfman's avatar Konstantin Dorfman
Browse files

soc: qcom: spcom: propagate print macro parameters to pr_*()



This change propagates macro parameters to pr_err/warn/info/debug.

Change-Id: I2f205066a5c19b74e6852f758bd587a9a6382e49
Signed-off-by: default avatarKonstantin Dorfman <kdorfman@codeaurora.org>
parent da09c431
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -73,23 +73,23 @@
	} while (0)

#define spcom_pr_err(_fmt, ...) do {					\
	pr_err(_fmt);							\
	pr_err(_fmt, ##__VA_ARGS__);					\
	spcom_ipc_log_string("%s" pr_fmt(_fmt), "", ##__VA_ARGS__);	\
	} while (0)

#define spcom_pr_warn(_fmt, ...) do {					\
	pr_warn(_fmt);							\
	pr_warn(_fmt, ##__VA_ARGS__);					\
	spcom_ipc_log_string("%s" pr_fmt(_fmt), "", ##__VA_ARGS__);	\
	} while (0)

#define spcom_pr_info(_fmt, ...) do {					\
	pr_info(_fmt);							\
	pr_info(_fmt, ##__VA_ARGS__);					\
	spcom_ipc_log_string("%s" pr_fmt(_fmt), "", ##__VA_ARGS__);	\
	} while (0)

#if defined(DEBUG)
#define spcom_pr_dbg(_fmt, ...) do {					\
	pr_debug(_fmt);							\
	pr_debug(_fmt, ##__VA_ARGS__);					\
	spcom_ipc_log_string("%s" pr_fmt(_fmt), "", ##__VA_ARGS__);	\
	} while (0)
#else