From patchwork Thu Sep 17 08:50:04 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7203561 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 1991D9F380 for ; Thu, 17 Sep 2015 08:50:21 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4A984207F5 for ; Thu, 17 Sep 2015 08:50:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CB7002041E for ; Thu, 17 Sep 2015 08:50:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754535AbbIQIuR (ORCPT ); Thu, 17 Sep 2015 04:50:17 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:4439 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753920AbbIQIuP (ORCPT ); Thu, 17 Sep 2015 04:50:15 -0400 Received: from tony-itx.corp.atmel.com (10.161.101.13) by eusmtp01.atmel.com (10.161.101.30) with Microsoft SMTP Server id 14.3.235.1; Thu, 17 Sep 2015 10:50:09 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 2/4] staging: wilc1000: remove warnings on the multiple blank lines uses Date: Thu, 17 Sep 2015 17:50:04 +0900 Message-ID: <1442479806-10737-2-git-send-email-tony.cho@atmel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1442479806-10737-1-git-send-email-tony.cho@atmel.com> References: <1442479806-10737-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=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_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 From: Leo Kim This patch removes the warnings reported by checkpatch.pl for using multiple blank lines. Signed-off-by: Leo Kim Signed-off-by: Tony Cho --- drivers/staging/wilc1000/wilc_wlan_if.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_wlan_if.h b/drivers/staging/wilc1000/wilc_wlan_if.h index cc92dc9..9111491 100644 --- a/drivers/staging/wilc1000/wilc_wlan_if.h +++ b/drivers/staging/wilc1000/wilc_wlan_if.h @@ -7,7 +7,6 @@ /* */ /* ///////////////////////////////////////////////////////////////////////// */ - #ifndef WILC_WLAN_IF_H #define WILC_WLAN_IF_H @@ -15,11 +14,9 @@ /* #define MEMORY_STATIC */ /* #define USE_OLD_SPI_SW */ - #include "wilc_oswrapper.h" #include "linux_wlan_common.h" - /******************************************** * * Debug Flags @@ -42,7 +39,6 @@ #define HIF_SPI BIT(0) #define HIF_SDIO_GPIO_IRQ BIT(2) - /******************************************** * * Tx/Rx Buffer Size Defines @@ -156,7 +152,6 @@ struct tx_complete_data { struct sk_buff *skb; }; - typedef void (*wilc_tx_complete_func_t)(void *, int); #define WILC_TX_ERR_NO_BUF (-2) @@ -392,7 +387,6 @@ typedef enum { typedef enum { WID_NIL = 0xffff, - /* BSS Type */ /* -------------------------------------------------------------- */ /* Configuration : Infrastructure Independent Access Point */ @@ -753,7 +747,6 @@ typedef enum { /* -------------------------------------------------------------- */ WID_11N_TXOP_PROT_DISABLE = 0x00B0, - WID_TX_POWER_LEVEL_11N = 0x00B1, /* Custom Character WID list */ @@ -827,7 +820,6 @@ typedef enum { WID_MEMORY_ACCESS_32BIT = 0x201F, WID_RF_REG_VAL = 0x2021, - /* NMAC Integer WID list */ WID_11N_PHY_ACTIVE_REG_VAL = 0x2080, @@ -883,8 +875,6 @@ typedef enum { /* BugID 4951: WID toset IP address in firmware */ WID_IP_ADDRESS = 0x3999, - - /* Custom String WID list */ /* EMAC Binary WID list */ @@ -899,7 +889,6 @@ typedef enum { /* NMAC Binary WID list */ WID_11N_AUTORATE_TABLE = 0x4080, - /*Added here by Amr - BugID 4134*/ WID_SCAN_CHANNEL_LIST = 0x4084, @@ -926,5 +915,4 @@ void wilc_bus_set_max_speed(void); void wilc_bus_set_default_speed(void); u32 wilc_get_chipid(u8 update); - #endif