diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2018-12-20 10:53:45 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2018-12-20 20:06:40 +0300 |
commit | 27120f2ac995d83fef383fb20e492037ecf09259 (patch) | |
tree | 30b3e3d91e53b91a2b6243fa2a528c45bbe4e8fd /drivers | |
parent | bd085be6ba9547795ddcbdc5cc0c78ea0201ba6e (diff) | |
download | linux-27120f2ac995d83fef383fb20e492037ecf09259.tar.xz |
ath10k: remove an unnecessary NULL check
The "survey" pointer is the address of an array element. We know that
it can't be NULL so this check can be removed.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c index 9b41cec6d887..3d59d7d73f4b 100644 --- a/drivers/net/wireless/ath/ath10k/wmi.c +++ b/drivers/net/wireless/ath/ath10k/wmi.c @@ -2582,7 +2582,7 @@ static void ath10k_wmi_event_chan_info_unpaired(struct ath10k *ar, survey = &ar->survey[idx]; - if (!params->mac_clk_mhz || !survey) + if (!params->mac_clk_mhz) return; memset(survey, 0, sizeof(*survey)); |