qcacld-3.0: Move Action OUI INI config to component

Move Action OUI INI config to component.
Add ucfg API to load/parse the configuration.

Change-Id: Ibaab5428bc575394b9a5b464639d24f80f042e93
CRs-Fixed: 3310697
This commit is contained in:
Liangwei Dong
2022-10-19 18:13:08 +08:00
committed by Madan Koyyalamudi
parent 8f69751b82
commit 0047371885
13 changed files with 986 additions and 837 deletions

View File

@@ -1101,6 +1101,18 @@ bool wlan_mlme_get_usr_disable_sta_eht(struct wlan_objmgr_psoc *psoc);
*/
void wlan_mlme_set_usr_disable_sta_eht(struct wlan_objmgr_psoc *psoc,
bool disable);
#else
static inline
bool wlan_mlme_get_usr_disable_sta_eht(struct wlan_objmgr_psoc *psoc)
{
return true;
}
static inline
void wlan_mlme_set_usr_disable_sta_eht(struct wlan_objmgr_psoc *psoc,
bool disable)
{
}
#endif
/**