Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b29181a5 authored by Gabriel Biren's avatar Gabriel Biren Committed by Android (Google) Code Review
Browse files

Merge "Reorder the hostapd Generation enum to list the WiFi generations...

Merge "Reorder the hostapd Generation enum to list the WiFi generations chronologically." into tm-dev
parents 25692880 fea031e8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ enum Generation {
  WIFI_STANDARD_LEGACY = 0,
  WIFI_STANDARD_11N = 1,
  WIFI_STANDARD_11AC = 2,
  WIFI_STANDARD_11AX = 3,
  WIFI_STANDARD_11AD = 4,
  WIFI_STANDARD_11AD = 3,
  WIFI_STANDARD_11AX = 4,
  WIFI_STANDARD_11BE = 5,
}
+3 −3
Original line number Diff line number Diff line
@@ -25,8 +25,8 @@ package android.hardware.wifi.hostapd;
 * WIFI_STANDARD_11N = [hw_mode is HOSTAPD_MODE_IEEE80211G and (HT is 1 or HT40 is 1)] or
 *                     [hw_mode is HOSTAPD_MODE_IEEE80211A and VHT is 0].
 * WIFI_STANDARD_11AC = hw_mode is HOSTAPD_MODE_IEEE80211A and VHT is 1.
 * WIFI_STANDARD_11AX = hw_mode is HOSTAPD_MODE_IEEE80211A and High Efficiency supported.
 * WIFI_STANDARD_11AD = hw_mode is HOSTAPD_MODE_IEEE80211AD.
 * WIFI_STANDARD_11AX = hw_mode is HOSTAPD_MODE_IEEE80211A and High Efficiency supported.
 * WIFI_STANDARD_11BE = hw_mode is HOSTAPD_MODE_IEEE80211A and Extreme High Throughput supported.
 */
@VintfStability
@@ -36,7 +36,7 @@ enum Generation {
    WIFI_STANDARD_LEGACY = 0,
    WIFI_STANDARD_11N = 1,
    WIFI_STANDARD_11AC = 2,
    WIFI_STANDARD_11AX = 3,
    WIFI_STANDARD_11AD = 4,
    WIFI_STANDARD_11AD = 3,
    WIFI_STANDARD_11AX = 4,
    WIFI_STANDARD_11BE = 5,
}