qcacmn: Featurize support for grp irq affinity

Add a feature flag for grp irq affinity support
changes.

Change-Id: I0a97dd85369aae66450e4869b591c7af74a66960
CRs-Fixed: 3070324
Этот коммит содержится в:
Yeshwanth Sriram Guntuka
2021-11-10 16:19:36 +05:30
коммит произвёл Madan Koyyalamudi
родитель 08de35c5d2
Коммит 299b26a366
13 изменённых файлов: 69 добавлений и 5 удалений

Просмотреть файл

@@ -2092,6 +2092,7 @@ static inline int hif_system_pm_state_check(struct hif_opaque_softc *hif)
}
#endif
#ifdef FEATURE_IRQ_AFFINITY
/**
* hif_set_grp_intr_affinity() - API to set affinity for grp
* intrs set in the bitmap
@@ -2104,4 +2105,11 @@ static inline int hif_system_pm_state_check(struct hif_opaque_softc *hif)
*/
void hif_set_grp_intr_affinity(struct hif_opaque_softc *scn,
uint32_t grp_intr_bitmask, bool perf);
#else
static inline
void hif_set_grp_intr_affinity(struct hif_opaque_softc *scn,
uint32_t grp_intr_bitmask, bool perf)
{
}
#endif
#endif /* _HIF_H_ */