Skip to content

Commit 372fc54

Browse files
rany2robimarko
authored andcommitted
wifi-scripts: ucode: fix setting tx_queue_data2_burst in config
Currently we unconditionally set it to 2.0 if 802.11ac and disregard what the user set. This sets it to 2.0 only as a default in case user didn't specify a tx_burst setting. Signed-off-by: Rany Hany <[email protected]> Link: openwrt/openwrt#20565 Signed-off-by: Robert Marko <[email protected]>
1 parent 8e457b6 commit 372fc54

File tree

1 file changed

+1
-1
lines changed
  • package/network/config/wifi-scripts/files-ucode/usr/share/ucode/wifi

1 file changed

+1
-1
lines changed

package/network/config/wifi-scripts/files-ucode/usr/share/ucode/wifi/hostapd.uc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ function device_htmode_append(config) {
303303
config.short_gi_160 = 0;
304304
}
305305

306-
config.tx_queue_data2_burst = '2.0';
306+
set_default(config, 'tx_queue_data2_burst', '2.0');
307307

308308
let vht_capab = phy_capabilities.vht_capa;
309309

0 commit comments

Comments
 (0)