1

wifi: mt76: mt7925: convert comma to semicolon

Replace comma between expressions with semicolons.

Using a ',' in place of a ';' can have unintended side effects.
Although that is not the case here, it is seems best to use ';'
unless ',' is intended.

Found by inspection.
No functional change intended.
Compile tested only.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Link: https://patch.msgid.link/20240904075213.1352976-1-nichen@iscas.ac.cn
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Chen Ni 2024-09-04 15:52:13 +08:00 committed by Felix Fietkau
parent 45064d19fd
commit df6b08670f

View File

@ -2174,12 +2174,12 @@ void mt7925_mcu_bss_rlm_tlv(struct sk_buff *skb, struct mt76_phy *phy,
tlv = mt76_connac_mcu_add_tlv(skb, UNI_BSS_INFO_RLM, sizeof(*req));
req = (struct bss_rlm_tlv *)tlv;
req->control_channel = chandef->chan->hw_value,
req->center_chan = ieee80211_frequency_to_channel(freq1),
req->center_chan2 = ieee80211_frequency_to_channel(freq2),
req->tx_streams = hweight8(phy->antenna_mask),
req->ht_op_info = 4, /* set HT 40M allowed */
req->rx_streams = hweight8(phy->antenna_mask),
req->control_channel = chandef->chan->hw_value;
req->center_chan = ieee80211_frequency_to_channel(freq1);
req->center_chan2 = ieee80211_frequency_to_channel(freq2);
req->tx_streams = hweight8(phy->antenna_mask);
req->ht_op_info = 4; /* set HT 40M allowed */
req->rx_streams = hweight8(phy->antenna_mask);
req->band = band;
switch (chandef->width) {