diff options
| author | Manikandan Mohan <manikand@codeaurora.org> | 2016-06-08 16:21:56 -0700 |
|---|---|---|
| committer | Vishwajith Upendra <vishwaji@codeaurora.org> | 2016-06-14 14:28:50 -0700 |
| commit | 7579337abf2d6a11406b5f355f54b756f6da6096 (patch) | |
| tree | 137b6b26fb83bac9a61322e8544e52a66819da5d | |
| parent | b6315dd6abb2727462de56e0b98c91af103a9456 (diff) | |
qcacld-3.0: Fix compilation error in 4.4v Kernel
Fix compilation errors in Kernel 4.4 version.
Change-Id: I08ce390a7983cfe70b46a48d22d6cfde11dc4c30
CRs-fixed: 1026152
| -rw-r--r-- | core/bmi/src/bmi.c | 2 | ||||
| -rw-r--r-- | core/pld/src/pld_snoc.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/core/bmi/src/bmi.c b/core/bmi/src/bmi.c index 1aafbdd6e4f6..ea5577835cf9 100644 --- a/core/bmi/src/bmi.c +++ b/core/bmi/src/bmi.c @@ -202,9 +202,11 @@ bmi_get_target_info(struct bmi_target_info *targ_info, case QDF_BUS_TYPE_SNOC: status = bmi_get_target_info_message_based(targ_info, ol_ctx); break; +#ifdef HIF_SDIO case QDF_BUS_TYPE_SDIO: status = hif_reg_based_get_target_info(scn, targ_info); break; +#endif default: status = QDF_STATUS_E_FAILURE; break; diff --git a/core/pld/src/pld_snoc.c b/core/pld/src/pld_snoc.c index 131f030fe722..2551469f219c 100644 --- a/core/pld/src/pld_snoc.c +++ b/core/pld/src/pld_snoc.c @@ -355,7 +355,7 @@ void pld_snoc_disable_irq(unsigned int ce_id) */ int pld_snoc_get_ce_id(int irq) { - icnss_get_ce_id(irq); + return icnss_get_ce_id(irq); } #endif |
