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

Commit 8b48ff97 authored by Eric Holmberg's avatar Eric Holmberg Committed by Matt Wagantall
Browse files

soc: qcom: glink: remove INIT_COMPLETION() compat define



Starting in kernel version 3.13, INIT_COMPLETION() is now
reinit_completion.  A compatibility macro was added to keep code
identical during development which was being done on both msm-3.10 and
msm-3.14.  Now that the initial driver development is complete, this
code can be removed on all branches with kernel version 3.13 and above.

Remove compatibility definition of INIT_COMPLETION() for all codelines
that use msm-3.13 or above.

Change-Id: I6e9112b5ed138f2c6497f3cf3abf6b711ff3485f
Signed-off-by: default avatarEric Holmberg <eholmber@codeaurora.org>
parent f32b6c63
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -14,10 +14,6 @@

#include <linux/ipc_logging.h>

#ifdef INIT_COMPLETION
#define reinit_completion(x) INIT_COMPLETION(*(x))
#endif /* INIT_COMPLETION */

/* Logging Macros */
enum {
	QCOM_GLINK_INFO = 1U << 0,