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

Commit 5dee537e authored by Jordan Crouse's avatar Jordan Crouse
Browse files

net: cnss2: Don't check for NULL before ipc_log_string()



The ipc_log_string() function quietly checks for a NULL context so an
explicit check is not needed.

Change-Id: Ic0dedbadf05d153614e1c6a2d3c6f0a536310707
Signed-off-by: default avatarJordan Crouse <jcrouse@codeaurora.org>
parent 1b34696d
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -12,15 +12,11 @@
extern void *cnss_ipc_log_context;
extern void *cnss_ipc_log_long_context;

#define cnss_ipc_log_string(_x...) do {					\
		if (cnss_ipc_log_context)				\
			ipc_log_string(cnss_ipc_log_context, _x);	\
	} while (0)
#define cnss_ipc_log_string(_x...)					\
	ipc_log_string(cnss_ipc_log_context, _x)

#define cnss_ipc_log_long_string(_x...) do {				\
		if (cnss_ipc_log_long_context)				\
			ipc_log_string(cnss_ipc_log_long_context, _x);	\
	} while (0)
#define cnss_ipc_log_long_string(_x...)					\
	ipc_log_string(cnss_ipc_log_long_context, _x)

#define cnss_pr_err(_fmt, ...) do {					\
		printk("%scnss: " _fmt, KERN_ERR, ##__VA_ARGS__);	\