This patch remove unnecessary parentheses found by checkpatch.pl
CHECK: Unnecessary parentheses around pHandle->hSem
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 
        /* Release any waiting receiver thread. */
        while (pHandle->u32ReceiversCount > 0) {
-               up(&(pHandle->hSem));
+               up(&pHandle->hSem);
                pHandle->u32ReceiversCount--;
        }
 
        pHandle->u32ReceiversCount++;
        spin_unlock_irqrestore(&pHandle->strCriticalSection, flags);
 
-       down(&(pHandle->hSem));
+       down(&pHandle->hSem);
 
        if (s32RetStatus == WILC_TIMEOUT) {
                /* timed out, just exit without consumeing the message */