diff options
author | Javier Cardona <javier@cozybit.com> | 2012-04-12 17:32:20 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-04-16 14:19:29 -0400 |
commit | dcca1cfc0978fa084245937ec1472b870edde97d (patch) | |
tree | c72d7bb892a106517416f5c30b1e8e3a88c789a6 | |
parent | b381fa3229a30f6d7b0e6053314c4a5378c9389d (diff) |
mac80211: Set the correct values for hwmp (1) and airtimeLinkMetric (1)
Per sections 8.4.2.100.2 and 8.4.2.100.3 of Std 802.11-2012
Reported-by: Shinichi Hotori <hotorinn@gmail.com>
Signed-off-by: Javier Cardona <javier@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | include/linux/ieee80211.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h index db84e2f6b289..ce9af8918514 100644 --- a/include/linux/ieee80211.h +++ b/include/linux/ieee80211.h | |||
@@ -1458,7 +1458,7 @@ enum { | |||
1458 | * be specified in a vendor specific information element | 1458 | * be specified in a vendor specific information element |
1459 | */ | 1459 | */ |
1460 | enum { | 1460 | enum { |
1461 | IEEE80211_PATH_PROTOCOL_HWMP = 0, | 1461 | IEEE80211_PATH_PROTOCOL_HWMP = 1, |
1462 | IEEE80211_PATH_PROTOCOL_VENDOR = 255, | 1462 | IEEE80211_PATH_PROTOCOL_VENDOR = 255, |
1463 | }; | 1463 | }; |
1464 | 1464 | ||
@@ -1470,7 +1470,7 @@ enum { | |||
1470 | * specified in a vendor specific information element | 1470 | * specified in a vendor specific information element |
1471 | */ | 1471 | */ |
1472 | enum { | 1472 | enum { |
1473 | IEEE80211_PATH_METRIC_AIRTIME = 0, | 1473 | IEEE80211_PATH_METRIC_AIRTIME = 1, |
1474 | IEEE80211_PATH_METRIC_VENDOR = 255, | 1474 | IEEE80211_PATH_METRIC_VENDOR = 255, |
1475 | }; | 1475 | }; |
1476 | 1476 | ||