iwinfo: detect AC PHY for broadcom-wl
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42761
This commit is contained in:
parent
dac05f6724
commit
b5529ed26b
2 changed files with 3 additions and 0 deletions
|
@ -56,6 +56,7 @@
|
||||||
#define WLC_PHY_TYPE_N 4
|
#define WLC_PHY_TYPE_N 4
|
||||||
#define WLC_PHY_TYPE_LP 5
|
#define WLC_PHY_TYPE_LP 5
|
||||||
#define WLC_PHY_TYPE_HT 7
|
#define WLC_PHY_TYPE_HT 7
|
||||||
|
#define WLC_PHY_TYPE_AC 11
|
||||||
|
|
||||||
#define WLC_BAND_5G 1
|
#define WLC_BAND_5G 1
|
||||||
#define WLC_BAND_2G 2
|
#define WLC_BAND_2G 2
|
||||||
|
|
|
@ -601,6 +601,8 @@ static int wl_get_hwmodelist(const char *ifname, int *buf)
|
||||||
case WLC_PHY_TYPE_B:
|
case WLC_PHY_TYPE_B:
|
||||||
*buf = IWINFO_80211_B;
|
*buf = IWINFO_80211_B;
|
||||||
break;
|
break;
|
||||||
|
case WLC_PHY_TYPE_AC:
|
||||||
|
*buf |= IWINFO_80211_AC;
|
||||||
case WLC_PHY_TYPE_HT:
|
case WLC_PHY_TYPE_HT:
|
||||||
case WLC_PHY_TYPE_N:
|
case WLC_PHY_TYPE_N:
|
||||||
*buf |= IWINFO_80211_N;
|
*buf |= IWINFO_80211_N;
|
||||||
|
|
Loading…
Reference in a new issue