Removed unnecessary parentheses around '!xyz' as '!' has higher
precedance than '||'

Signed-off-by: Mitali Borkar <mitaliborkar...@gmail.com>
---

Changes from v1:- removed unnecessary parentheses around boolean
expression

 drivers/staging/rtl8192e/rtl819x_HTProc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8192e/rtl819x_HTProc.c 
b/drivers/staging/rtl8192e/rtl819x_HTProc.c
index b1fa8e9a4f28..431202927036 100644
--- a/drivers/staging/rtl8192e/rtl819x_HTProc.c
+++ b/drivers/staging/rtl8192e/rtl819x_HTProc.c
@@ -276,7 +276,7 @@ void HTConstructCapabilityElement(struct rtllib_device 
*ieee, u8 *posHTCap,
        struct rt_hi_throughput *pHT = ieee->pHTInfo;
        struct ht_capab_ele *pCapELE = NULL;
 
-       if ((!posHTCap) || (!pHT)) {
+       if (!posHTCap || !pHT) {
                netdev_warn(ieee->dev,
                            "%s(): posHTCap and pHTInfo are null\n", __func__);
                return;
-- 
2.30.2

Reply via email to