From patchwork Wed Aug 19 06:59:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7035761 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 1272AC05AC for ; Wed, 19 Aug 2015 06:59:35 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 49D39207B2 for ; Wed, 19 Aug 2015 06:59:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 69808207B1 for ; Wed, 19 Aug 2015 06:59:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752953AbbHSG7b (ORCPT ); Wed, 19 Aug 2015 02:59:31 -0400 Received: from mail-pa0-f47.google.com ([209.85.220.47]:36504 "EHLO mail-pa0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752904AbbHSG7a (ORCPT ); Wed, 19 Aug 2015 02:59:30 -0400 Received: by pawq9 with SMTP id q9so54084424paw.3 for ; Tue, 18 Aug 2015 23:59:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=ssFtu3c9nXsmFWAHyrzOE9atwpbFTffiTaWYwmuJnIk=; b=zIdRZcYDY4p06JVtTkguPOcnfbQVS1mvUnxPkMThlQ+7ZUX7NDecQ9f+be8J+J33KV arkp+tylBTShz4ERW/ZukatAEp8dYTwQ3LsZOpc7ApQYo2D4ZkxVu/WMQQTwTOP9jz7F D5vU1jEEHyOT8vG1WKw47PnvjbAQ8/+iUw0zfR9HlZwMwBcNk0OsTHkn/sQhhJw8wa3J X1PEsEOzHkmGbkqnewP7KE2EJ/ECE1S+XWSx/KyWWrXTvsXfXMdoXBjl6nF8hrcY/Wco 567g64sr4/v3fppsCZL0GQCUrAiiTjHCPTqVEfN1bjpS9X5Hew498DndKBdIMjBbFf+V wa4Q== X-Received: by 10.68.184.197 with SMTP id ew5mr21655252pbc.145.1439967570320; Tue, 18 Aug 2015 23:59:30 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id jw13sm20536843pad.48.2015.08.18.23.59.27 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 18 Aug 2015 23:59:29 -0700 (PDT) From: Chaehyun Lim To: gregkh@linuxfoundation.org Cc: johnny.kim@atmel.com, rachel.kim@atmel.com, dean.lee@atmel.com, chris.park@atmel.com, linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, Chaehyun Lim Subject: [PATCH 05/13] staging: wilc1000: wilc_msgqueue.c: remove unnecessary parentheses Date: Wed, 19 Aug 2015 15:59:00 +0900 Message-Id: <1439967548-25876-5-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1439967548-25876-1-git-send-email-chaehyun.lim@gmail.com> References: <1439967548-25876-1-git-send-email-chaehyun.lim@gmail.com> Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch remove unnecessary parentheses found by checkpatch.pl CHECK: Unnecessary parentheses around pHandle->hSem Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/wilc_msgqueue.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_msgqueue.c b/drivers/staging/wilc1000/wilc_msgqueue.c index 8cb74d1..53ce586 100644 --- a/drivers/staging/wilc1000/wilc_msgqueue.c +++ b/drivers/staging/wilc1000/wilc_msgqueue.c @@ -30,7 +30,7 @@ WILC_ErrNo WILC_MsgQueueDestroy(WILC_MsgQueueHandle *pHandle) /* Release any waiting receiver thread. */ while (pHandle->u32ReceiversCount > 0) { - up(&(pHandle->hSem)); + up(&pHandle->hSem); pHandle->u32ReceiversCount--; } @@ -133,7 +133,7 @@ WILC_ErrNo WILC_MsgQueueRecv(WILC_MsgQueueHandle *pHandle, 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 */