aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJia Ding <jiad@codeaurora.org>2019-11-15 14:08:35 +0800
committerGerrit - the friendly Code Review server <code-review@localhost>2019-11-24 19:14:09 -0800
commitc8729fdab140107fd6568fb0c7c814c50daf617d (patch)
tree930fc6f158431ed5fb50a1aef9e97014aa738a64
parent24f4e64006bbbf55341a35210b82bee80a8423d9 (diff)
msm: ipa: fix ipa_disable_apps_wan_cons_deaggr declarationLA.AU.0.1.0.r1-01800-gen3meta.0
ipa_disable_apps_wan_cons_deaggr() has different declarations when CONFIG_IPA or CONFIG_IPA3 are not set. Thus fix the declaration to align with CONFIG_IPA or CONFIG_IPA3 enabled one. Change-Id: Ic09cac2484c9cfbcd0833583c05c6fc19a3c2aed Signed-off-by: jiad <jiad@codeaurora.org>
-rw-r--r--include/linux/ipa.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/ipa.h b/include/linux/ipa.h
index 783e085d3a8c..19113b259daf 100644
--- a/include/linux/ipa.h
+++ b/include/linux/ipa.h
@@ -2483,7 +2483,8 @@ static inline int ipa_release_wdi_mapping(u32 num_buffers,
return -EINVAL;
}
-static inline int ipa_disable_apps_wan_cons_deaggr(void)
+static inline int ipa_disable_apps_wan_cons_deaggr(uint32_t agg_size,
+ uint32_t agg_count)
{
return -EINVAL;
}