mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
wifi: rt2x00: convert comma to semicolon
To ensure code clarity and prevent potential errors, it's advisable to employ the ';' as a statement separator, except when ',' are intentionally used for specific purposes. Signed-off-by: Yan Zhen <yanzhen@vivo.com> Acked-by: Stanislaw Gruszka <stf_xl@wp.pl> Signed-off-by: Kalle Valo <kvalo@kernel.org> Link: https://patch.msgid.link/20240920025917.1959932-1-yanzhen@vivo.com
This commit is contained in:
parent
0d7c2194f1
commit
c8945c8cd4
1 changed files with 1 additions and 1 deletions
|
@ -3607,7 +3607,7 @@ static void rt2800_config_channel_rf55xx(struct rt2x00_dev *rt2x00dev,
|
|||
rt2800_rfcsr_write(rt2x00dev, 52, 0x0C);
|
||||
rt2800_rfcsr_write(rt2x00dev, 54, 0xF8);
|
||||
if (rf->channel <= 50) {
|
||||
rt2800_rfcsr_write(rt2x00dev, 55, 0x06),
|
||||
rt2800_rfcsr_write(rt2x00dev, 55, 0x06);
|
||||
rt2800_rfcsr_write(rt2x00dev, 56, 0xD3);
|
||||
} else if (rf->channel >= 52) {
|
||||
rt2800_rfcsr_write(rt2x00dev, 55, 0x04);
|
||||
|
|
Loading…
Add table
Reference in a new issue