From: Manikanta Pubbisetty <manikanta.pubbise...@gmail.com>

This patch combines several if statements into a single if condition
in WMI management rx handler. Found during code review.

Signed-off-by: Manikanta Pubbisetty <manikanta.pubbise...@gmail.com>
---
 drivers/net/wireless/ath/ath10k/wmi.c | 19 +++----------------
 1 file changed, 3 insertions(+), 16 deletions(-)

diff --git a/drivers/net/wireless/ath/ath10k/wmi.c 
b/drivers/net/wireless/ath/ath10k/wmi.c
index 6e7d7a7..a9d42ef 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -2200,22 +2200,9 @@ int ath10k_wmi_event_mgmt_rx(struct ath10k *ar, struct 
sk_buff *skb)
        ath10k_dbg(ar, ATH10K_DBG_MGMT,
                   "event mgmt rx status %08x\n", rx_status);
 
-       if (test_bit(ATH10K_CAC_RUNNING, &ar->dev_flags)) {
-               dev_kfree_skb(skb);
-               return 0;
-       }
-
-       if (rx_status & WMI_RX_STATUS_ERR_DECRYPT) {
-               dev_kfree_skb(skb);
-               return 0;
-       }
-
-       if (rx_status & WMI_RX_STATUS_ERR_KEY_CACHE_MISS) {
-               dev_kfree_skb(skb);
-               return 0;
-       }
-
-       if (rx_status & WMI_RX_STATUS_ERR_CRC) {
+       if ((test_bit(ATH10K_CAC_RUNNING, &ar->dev_flags)) ||
+           (rx_stats & (WMI_RX_STATUS_ERR_DECRYPT |
+           WMI_RX_STATUS_ERR_KEY_CACHE_MISS | WMI_RX_STATUS_ERR_CRC))) {
                dev_kfree_skb(skb);
                return 0;
        }
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to