rtw88: remove redundant null pointer check on arrays
authorColin Ian King <colin.king@canonical.com>
Fri, 25 Oct 2019 11:30:56 +0000 (12:30 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 31 Oct 2019 08:04:55 +0000 (10:04 +0200)
commitbaff8da6e1636420ce04cadd6df56e137fa6e005
tree64724710e472f2ecb9b0899e19ce0d877b4fa765
parent5195b904264098839144d08d23c600811de2e2da
rtw88: remove redundant null pointer check on arrays

The checks to see if swing_table->n or swing_table->p are null are
redundant since n and p are arrays and can never be null if
swing_table is non-null.  I believe these are redundant checks
and can be safely removed, especially the checks implies that these
are not arrays which can lead to confusion.

Addresses-Coverity: ("Array compared against 0")
Fixes: c97ee3e0bea2 ("rtw88: add power tracking support")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/realtek/rtw88/phy.c