From: Vladimir Kondratiev Date: Tue, 23 Apr 2013 06:54:21 +0000 (+0300) Subject: cfg80211: add 60GHz regulatory class X-Git-Tag: v3.11-rc1~16^2~103^2^2~41^2~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=55300a13d2ca1d59f659cf00b9d8dc93ea225882;p=thirdparty%2Fkernel%2Flinux.git cfg80211: add 60GHz regulatory class Add regulatory class for 60GHz band, according to the last specification. Signed-off-by: Vladimir Kondratiev Signed-off-by: Johannes Berg --- diff --git a/net/wireless/util.c b/net/wireless/util.c index f5ad4d94ba886..b11052be09bed 100644 --- a/net/wireless/util.c +++ b/net/wireless/util.c @@ -1169,6 +1169,9 @@ bool ieee80211_operating_class_to_band(u8 operating_class, case 84: *band = IEEE80211_BAND_2GHZ; return true; + case 180: + *band = IEEE80211_BAND_60GHZ; + return true; } return false;