From patchwork Thu Jul 30 09:10:13 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 6900591 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 10B149F380 for ; Thu, 30 Jul 2015 09:11:05 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4A02520511 for ; Thu, 30 Jul 2015 09:11:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4F14C204FF for ; Thu, 30 Jul 2015 09:11:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755171AbbG3JLC (ORCPT ); Thu, 30 Jul 2015 05:11:02 -0400 Received: from eusmtp01.atmel.com ([212.144.249.243]:58065 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755133AbbG3JLA (ORCPT ); Thu, 30 Jul 2015 05:11:00 -0400 Received: from tony-ThinkPad-T420.corp.atmel.com (10.161.101.13) by eusmtp01.atmel.com (10.161.101.31) with Microsoft SMTP Server id 14.3.235.1; Thu, 30 Jul 2015 11:10:54 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH V2 4/5] staging: wilc1000: remove errors on required space Date: Thu, 30 Jul 2015 18:10:13 +0900 Message-ID: <1438247414-19708-5-git-send-email-tony.cho@atmel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1438247414-19708-1-git-send-email-tony.cho@atmel.com> References: <1438247414-19708-1-git-send-email-tony.cho@atmel.com> MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Spam-Status: No, score=-8.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable 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 removes the errors reported by checkpatch.pl, which is the space required before the open parenthesis '('. Signed-off-by: Tony Cho --- V2: This patch is not different with the first one. This patch includes warnings on no space required before the open parenthesis in the function, sdio_clear_int_ext. The 9th patch fixed the same problem in the function, not sdio_clear_int_ext but sdio_sync. --- drivers/staging/wilc1000/wilc_sdio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/wilc_sdio.c b/drivers/staging/wilc1000/wilc_sdio.c index 44421d0..ee1cbd1 100644 --- a/drivers/staging/wilc1000/wilc_sdio.c +++ b/drivers/staging/wilc1000/wilc_sdio.c @@ -778,7 +778,7 @@ static int sdio_clear_int_ext(uint32_t val) { int ret; - if(g_sdio.has_thrpt_enh3) { + if (g_sdio.has_thrpt_enh3) { uint32_t reg; reg = val & ((1 << MAX_NUN_INT_THRPT_ENH2) - 1);