mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-09 03:38:09 +02:00
core: fix Wi-Fi data rate tables
Fixes: f2b0092b5b ('wifi: parse BSS IEs for 80211n and 80211ac data rates')
This commit is contained in:
parent
b58a37acfe
commit
fa80896ee7
1 changed files with 4 additions and 4 deletions
|
|
@ -4642,13 +4642,13 @@ get_max_rate_vht_80_ss3(int mcs)
|
||||||
case 5:
|
case 5:
|
||||||
return 702000000;
|
return 702000000;
|
||||||
case 6:
|
case 6:
|
||||||
return 0;
|
return 0; /* invalid */
|
||||||
case 7:
|
case 7:
|
||||||
return 877500000;
|
return 877500000;
|
||||||
case 8:
|
case 8:
|
||||||
return 105300000;
|
return 1053000000;
|
||||||
case 9:
|
case 9:
|
||||||
return 117000000;
|
return 1170000000;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
@ -4732,7 +4732,7 @@ get_max_rate_vht_160_ss3(int mcs)
|
||||||
case 8:
|
case 8:
|
||||||
return 2106000000;
|
return 2106000000;
|
||||||
case 9:
|
case 9:
|
||||||
return 0;
|
return 0; /* invalid */
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue