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

Commit d9b17608 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: smp2p: Don't check for NULL before ipc_log_string()"

parents 8c0ae797 79b71d96
Loading
Loading
Loading
Loading
+1 −4
Original line number Original line Diff line number Diff line
@@ -165,10 +165,7 @@ struct qcom_smp2p {
static void *ilc;
static void *ilc;
#define SMP2P_LOG_PAGE_CNT 2
#define SMP2P_LOG_PAGE_CNT 2
#define SMP2P_INFO(x, ...)	\
#define SMP2P_INFO(x, ...)	\
do {	\
	ipc_log_string(ilc, "[%s]: "x, __func__, ##__VA_ARGS__)
	if (ilc) \
		ipc_log_string(ilc, "[%s]: "x, __func__, ##__VA_ARGS__); \
} while (0)


static void qcom_smp2p_kick(struct qcom_smp2p *smp2p)
static void qcom_smp2p_kick(struct qcom_smp2p *smp2p)
{
{