mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 00:22:00 +02:00
wifi: rtw89: fix typo "frome" -> "from" in rx_freq_frome_ie
The chip_info field rx_freq_frome_ie (RX frequency from Information Element) has a typo. The function that uses it is already spelled correctly: rtw89_core_update_rx_freq_from_ie. Rename the field to match. Signed-off-by: Christos Longros <chris.longros@gmail.com> Acked-by: Ping-Ke Shih <pkshih@realtek.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://patch.msgid.link/20260329074550.114787-1-chris.longros@gmail.com
This commit is contained in:
parent
c2ca7b9d27
commit
127ea8d0b0
|
|
@ -3203,7 +3203,7 @@ static void rtw89_core_update_rx_freq_from_ie(struct rtw89_dev *rtwdev,
|
|||
u8 *variable;
|
||||
int chan;
|
||||
|
||||
if (!rtwdev->chip->rx_freq_frome_ie)
|
||||
if (!rtwdev->chip->rx_freq_from_ie)
|
||||
return;
|
||||
|
||||
if (!rtwdev->scanning)
|
||||
|
|
|
|||
|
|
@ -4546,7 +4546,7 @@ struct rtw89_chip_info {
|
|||
bool support_noise;
|
||||
bool ul_tb_waveform_ctrl;
|
||||
bool ul_tb_pwr_diff;
|
||||
bool rx_freq_frome_ie;
|
||||
bool rx_freq_from_ie;
|
||||
bool hw_sec_hdr;
|
||||
bool hw_mgmt_tx_encrypt;
|
||||
bool hw_tkip_crypto;
|
||||
|
|
|
|||
|
|
@ -2641,7 +2641,7 @@ const struct rtw89_chip_info rtw8851b_chip_info = {
|
|||
.support_noise = false,
|
||||
.ul_tb_waveform_ctrl = true,
|
||||
.ul_tb_pwr_diff = false,
|
||||
.rx_freq_frome_ie = true,
|
||||
.rx_freq_from_ie = true,
|
||||
.hw_sec_hdr = false,
|
||||
.hw_mgmt_tx_encrypt = false,
|
||||
.hw_tkip_crypto = false,
|
||||
|
|
|
|||
|
|
@ -2378,7 +2378,7 @@ const struct rtw89_chip_info rtw8852a_chip_info = {
|
|||
.support_noise = true,
|
||||
.ul_tb_waveform_ctrl = false,
|
||||
.ul_tb_pwr_diff = false,
|
||||
.rx_freq_frome_ie = true,
|
||||
.rx_freq_from_ie = true,
|
||||
.hw_sec_hdr = false,
|
||||
.hw_mgmt_tx_encrypt = false,
|
||||
.hw_tkip_crypto = false,
|
||||
|
|
|
|||
|
|
@ -974,7 +974,7 @@ const struct rtw89_chip_info rtw8852b_chip_info = {
|
|||
.support_noise = false,
|
||||
.ul_tb_waveform_ctrl = true,
|
||||
.ul_tb_pwr_diff = false,
|
||||
.rx_freq_frome_ie = true,
|
||||
.rx_freq_from_ie = true,
|
||||
.hw_sec_hdr = false,
|
||||
.hw_mgmt_tx_encrypt = false,
|
||||
.hw_tkip_crypto = false,
|
||||
|
|
|
|||
|
|
@ -813,7 +813,7 @@ const struct rtw89_chip_info rtw8852bt_chip_info = {
|
|||
.support_sar_by_ant = true,
|
||||
.ul_tb_waveform_ctrl = true,
|
||||
.ul_tb_pwr_diff = false,
|
||||
.rx_freq_frome_ie = true,
|
||||
.rx_freq_from_ie = true,
|
||||
.hw_sec_hdr = false,
|
||||
.hw_mgmt_tx_encrypt = false,
|
||||
.hw_tkip_crypto = true,
|
||||
|
|
|
|||
|
|
@ -3171,7 +3171,7 @@ const struct rtw89_chip_info rtw8852c_chip_info = {
|
|||
.support_noise = false,
|
||||
.ul_tb_waveform_ctrl = false,
|
||||
.ul_tb_pwr_diff = true,
|
||||
.rx_freq_frome_ie = false,
|
||||
.rx_freq_from_ie = false,
|
||||
.hw_sec_hdr = true,
|
||||
.hw_mgmt_tx_encrypt = true,
|
||||
.hw_tkip_crypto = true,
|
||||
|
|
|
|||
|
|
@ -2975,7 +2975,7 @@ const struct rtw89_chip_info rtw8922a_chip_info = {
|
|||
.support_noise = false,
|
||||
.ul_tb_waveform_ctrl = false,
|
||||
.ul_tb_pwr_diff = false,
|
||||
.rx_freq_frome_ie = false,
|
||||
.rx_freq_from_ie = false,
|
||||
.hw_sec_hdr = true,
|
||||
.hw_mgmt_tx_encrypt = true,
|
||||
.hw_tkip_crypto = true,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user