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

Commit 251e0b51 authored by Michael Adisumarta's avatar Michael Adisumarta
Browse files

msm: ipa: Compilation errors fix when IPA config flags not enabled



This change fixes a compilation error with missing semicolon
and having an used function when the config flag CONFIG_IPA3
is not enabled for SDM855.

Change-Id: Ic5a51c548c55ce8fb2a83cf22944484e445e31f2
Acked-by: default avatarJyothi Jayanthi <jyothij@qti.qualcomm.com>
Signed-off-by: default avatarMichael Adisumarta <madisuma@codeaurora.org>
parent 660e82ce
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1511,7 +1511,7 @@ static inline int ipa_cfg_ep_nat(u32 clnt_hdl,
static inline int ipa_cfg_ep_conn_track(u32 clnt_hdl,
	const struct ipa_ep_cfg_conn_track *ep_conn_track)
{
	return -EPERM
	return -EPERM;
}

static inline int ipa_cfg_ep_hdr(u32 clnt_hdl,
+1 −1
Original line number Diff line number Diff line
@@ -286,7 +286,7 @@ static inline int ipa_uc_offload_reg_rdyCB(struct ipa_uc_ready_params *param)
	return -EPERM;
}

static void ipa_uc_offload_dereg_rdyCB(enum ipa_uc_offload_proto proto)
static inline void ipa_uc_offload_dereg_rdyCB(enum ipa_uc_offload_proto proto)
{
}