Merge "msm: featurize support for 32channels from QDSP6"

This commit is contained in:
Linux Build Service Account
2018-10-16 01:49:02 -07:00
committed by Gerrit - the friendly Code Review server
5 changed files with 30 additions and 10 deletions

View File

@@ -207,4 +207,17 @@ int32_t core_get_license_status(uint32_t module_id);
int32_t q6core_load_unload_topo_modules(uint32_t topology_id,
bool preload_type);
#if IS_ENABLED(CONFIG_USE_Q6_32CH_SUPPORT)
static inline bool q6core_use_Q6_32ch_support(void)
{
return true;
}
#else
static inline bool q6core_use_Q6_32ch_support(void)
{
return false;
}
#endif
#endif /* __Q6CORE_H__ */