From patchwork Mon Jun 22 04:08:11 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 6653071 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 A7513C05AC for ; Mon, 22 Jun 2015 04:08:41 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 12605205CB for ; Mon, 22 Jun 2015 04:08:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 07E74205C4 for ; Mon, 22 Jun 2015 04:08:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750938AbbFVEIb (ORCPT ); Mon, 22 Jun 2015 00:08:31 -0400 Received: from mail-pa0-f42.google.com ([209.85.220.42]:36545 "EHLO mail-pa0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750770AbbFVEIa (ORCPT ); Mon, 22 Jun 2015 00:08:30 -0400 Received: by paceq1 with SMTP id eq1so100527804pac.3 for ; Sun, 21 Jun 2015 21:08: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; bh=YSDHPq+Z1eo7qpl++R+iXXZSqiFC9uYZYOEi4CT0uGs=; b=ICMsRvVNweZ8NXIV2R39G2s4gyEkZOpHxtgm2zw63JDMsZRSZBq9g+zN2nS7gYITri 56SbDOZXuSKUGJF4KSkC85xreevycAYIfWjtmQD3ul0siwn/pBqHMirXuvuBQIEJXm8T niZioQFF9rTr6l2KkILwkjGDl6MNblvx5j9EUefmxBmMZeM7KoziW4Uo0JCwjN1riSEE ARgIxthMyX6X6a6ruwQXRZPJF3AvwiwicOMpy92ZvW+AK+BGA+m5n4GNu8R39/B/kCXe a326cSa3rSes9M9OKB5jcyGs3JP78IAGZhNjbvPMwFjyn56aQvQcx9Olk7TpnbTM3cG+ jcRQ== X-Received: by 10.66.221.193 with SMTP id qg1mr53696959pac.134.1434946109981; Sun, 21 Jun 2015 21:08:29 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by mx.google.com with ESMTPSA id om10sm18074140pbb.58.2015.06.21.21.08.26 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 21 Jun 2015 21:08:28 -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 1/5] staging: wilc1000: wilc_wfi_netdevice.c: remove prohibited space before semicolon Date: Mon, 22 Jun 2015 13:08:11 +0900 Message-Id: <1434946095-26157-1-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 1.9.1 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.2 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 Fix checkpatch warning found by checkpatch.pl WARNING: space prohibited before semicolon Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/wilc_wfi_netdevice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/wilc_wfi_netdevice.c b/drivers/staging/wilc1000/wilc_wfi_netdevice.c index ab66ce4..01542f4 100644 --- a/drivers/staging/wilc1000/wilc_wfi_netdevice.c +++ b/drivers/staging/wilc1000/wilc_wfi_netdevice.c @@ -31,7 +31,7 @@ module_param(timeout, int, 0); /* * Do we run in NAPI mode? */ -static int use_napi ; +static int use_napi; module_param(use_napi, int, 0);