]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
wifi: rt2x00: remove redundant check if u8 array element is less than zero
authorColin Ian King <colin.i.king@gmail.com>
Wed, 20 Sep 2023 12:12:40 +0000 (13:12 +0100)
committerKalle Valo <kvalo@kernel.org>
Thu, 28 Sep 2023 16:24:30 +0000 (19:24 +0300)
commitb2172a9330b5e48f37c3d4f29604727228b39885
tree8ca4872c42d3fc2fce43ecfe8da8f2b62b1ea8b7
parent2a1c5c7de468801d414dcb4410aba32c3ee7207b
wifi: rt2x00: remove redundant check if u8 array element is less than zero

The check on vga_gain[ch_idx] being less than zero is always false since
vga_gain is a u8 array. Clean up the code by removing the check and the
following assignment. Cleans up clang scan build warning:

drivers/net/wireless/ralink/rt2x00/rt2800lib.c:9704:26: warning:
result of comparison of unsigned expression < 0 is always
false [-Wtautological-unsigned-zero-compare]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230920121240.120455-1-colin.i.king@gmail.com
drivers/net/wireless/ralink/rt2x00/rt2800lib.c