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:
Christos Longros 2026-03-29 09:45:50 +02:00 committed by Ping-Ke Shih
parent c2ca7b9d27
commit 127ea8d0b0
8 changed files with 8 additions and 8 deletions

View File

@ -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)

View File

@ -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;

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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,