summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath10k/pci.c
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-01-12 20:27:13 +0300
committerKalle Valo <kvalo@codeaurora.org>2018-01-16 17:34:04 +0300
commit95f27a51ee02fdd9e7afc06f090c7171673a79ac (patch)
tree28e57ebacdbba048f20f005c52ffaf0f13c4d23b /drivers/net/wireless/ath/ath10k/pci.c
parentcdd4743e9ba3d60b875adf2a67fe584883fdd1e9 (diff)
downloadlinux-95f27a51ee02fdd9e7afc06f090c7171673a79ac.tar.xz
ath10k: remove redundant -ve check against u32 integer size
Variable section_table.size is a u32 and so cannot be less than zero, hence the less than zero check is redundant and can be removed. Detected by CoverityScan, CID#1463855 ("Unsigned compared against 0") Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/pci.c')
-rw-r--r--drivers/net/wireless/ath/ath10k/pci.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c
index f6a23f2d0335..355db6a0fcf3 100644
--- a/drivers/net/wireless/ath/ath10k/pci.c
+++ b/drivers/net/wireless/ath/ath10k/pci.c
@@ -1478,9 +1478,6 @@ static int ath10k_pci_dump_memory_section(struct ath10k *ar,
if (!mem_region || !buf)
return 0;
- if (mem_region->section_table.size < 0)
- return 0;
-
cur_section = &mem_region->section_table.sections[0];
if (mem_region->start > cur_section->start) {