|
@@ -3541,6 +3541,9 @@ static void wiphy_info_supported_iftypes(struct wiphy_info_data *info,
|
|
|
case NL80211_IFTYPE_AP:
|
|
|
info->capa->flags |= WPA_DRIVER_FLAGS_AP;
|
|
|
break;
|
|
|
+ case NL80211_IFTYPE_MESH_POINT:
|
|
|
+ info->capa->flags |= WPA_DRIVER_FLAGS_MESH;
|
|
|
+ break;
|
|
|
case NL80211_IFTYPE_ADHOC:
|
|
|
info->capa->flags |= WPA_DRIVER_FLAGS_IBSS;
|
|
|
break;
|
|
@@ -12163,7 +12166,7 @@ static int wpa_driver_nl80211_status(void *priv, char *buf, size_t buflen)
|
|
|
"capa.key_mgmt=0x%x\n"
|
|
|
"capa.enc=0x%x\n"
|
|
|
"capa.auth=0x%x\n"
|
|
|
- "capa.flags=0x%x\n"
|
|
|
+ "capa.flags=0x%llx\n"
|
|
|
"capa.max_scan_ssids=%d\n"
|
|
|
"capa.max_sched_scan_ssids=%d\n"
|
|
|
"capa.sched_scan_supported=%d\n"
|
|
@@ -12176,7 +12179,7 @@ static int wpa_driver_nl80211_status(void *priv, char *buf, size_t buflen)
|
|
|
drv->capa.key_mgmt,
|
|
|
drv->capa.enc,
|
|
|
drv->capa.auth,
|
|
|
- drv->capa.flags,
|
|
|
+ (unsigned long long) drv->capa.flags,
|
|
|
drv->capa.max_scan_ssids,
|
|
|
drv->capa.max_sched_scan_ssids,
|
|
|
drv->capa.sched_scan_supported,
|