Rename driver capability for radar background detection
Use the WPA_DRIVER_FLAGS2_ prefer for this to be more consistent. Signed-off-by: Gokul Sivakumar <gokulkumar.sivakumar@infineon.com>
This commit is contained in:
parent
5025047ac3
commit
bbc7ffe852
3 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ dfs_downgrade_bandwidth(struct hostapd_iface *iface, int *secondary_channel,
|
|||
|
||||
static bool dfs_use_radar_background(struct hostapd_iface *iface)
|
||||
{
|
||||
return (iface->drv_flags2 & WPA_DRIVER_RADAR_BACKGROUND) &&
|
||||
return (iface->drv_flags2 & WPA_DRIVER_FLAGS2_RADAR_BACKGROUND) &&
|
||||
iface->conf->enable_background_radar;
|
||||
}
|
||||
|
||||
|
|
|
@ -2265,7 +2265,7 @@ struct wpa_driver_capa {
|
|||
/** Driver handles SA Query procedures in AP mode */
|
||||
#define WPA_DRIVER_FLAGS2_SA_QUERY_OFFLOAD_AP 0x0000000000000200ULL
|
||||
/** Driver supports background radar/CAC detection */
|
||||
#define WPA_DRIVER_RADAR_BACKGROUND 0x0000000000000400ULL
|
||||
#define WPA_DRIVER_FLAGS2_RADAR_BACKGROUND 0x0000000000000400ULL
|
||||
/** Driver supports secure LTF in STA mode */
|
||||
#define WPA_DRIVER_FLAGS2_SEC_LTF_STA 0x0000000000000800ULL
|
||||
/** Driver supports secure RTT measurement exchange in STA mode */
|
||||
|
|
|
@ -681,7 +681,7 @@ static void wiphy_info_ext_feature_flags(struct wiphy_info_data *info,
|
|||
|
||||
if (ext_feature_isset(ext_features, len,
|
||||
NL80211_EXT_FEATURE_RADAR_BACKGROUND))
|
||||
capa->flags2 |= WPA_DRIVER_RADAR_BACKGROUND;
|
||||
capa->flags2 |= WPA_DRIVER_FLAGS2_RADAR_BACKGROUND;
|
||||
|
||||
if (ext_feature_isset(ext_features, len,
|
||||
NL80211_EXT_FEATURE_SECURE_LTF)) {
|
||||
|
|
Loading…
Reference in a new issue