qcacmn: Add qdf_get_ipa_smmu_enabled stub API

Add qdf_get_ipa_smmu_enabled stub API when IPA_OFFLOAD
config flag is disabled and SMMU S1 translation config
flag is enabled to avoid compilation issue.

Change-Id: Ic7291aacf2ca0008bfe112e689fc39d14d99b16c
CRs-Fixed: 3317536
This commit is contained in:
Yeshwanth Sriram Guntuka
2022-05-18 15:33:10 +05:30
کامیت شده توسط Madan Koyyalamudi
والد 28aa42540e
کامیت 94c2176709

مشاهده پرونده

@@ -712,5 +712,12 @@ static inline bool qdf_ipa_get_lan_rx_napi(void)
return false;
}
#endif /* IPA_LAN_RX_NAPI_SUPPORT */
#else
#ifdef ENABLE_SMMU_S1_TRANSLATION
static inline bool qdf_get_ipa_smmu_enabled(void)
{
return false;
}
#endif
#endif /* IPA_OFFLOAD */
#endif /* _QDF_IPA_H */