ath10k: sdio: remove redundant check in for loop
authorAlex Dewar <alex.dewar90@gmail.com>
Wed, 28 Oct 2020 13:54:30 +0000 (15:54 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 6 Nov 2020 06:35:41 +0000 (08:35 +0200)
commitdbeb101d28eb89a9138055b50d5ce7a9f7a663cf
tree24fa098073cb0829b1783e30c7e897da366b5804
parent16f283f0a4bbc4cc84be574882706fa0d244186e
ath10k: sdio: remove redundant check in for loop

The for loop checks whether cur_section is NULL on every iteration, but
we know it can never be NULL as there is another check towards the
bottom of the loop body. Refactor to avoid this unnecessary check.

Also, increment the variable i inline for clarity

Addresses-Coverity: 1496984 ("Null pointer dereferences)
Suggested-by: Saeed Mahameed <saeedm@nvidia.com>
Signed-off-by: Alex Dewar <alex.dewar90@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200916165748.20927-1-alex.dewar90@gmail.com
drivers/net/wireless/ath/ath10k/sdio.c