From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1422895AbbE2Uzk (ORCPT ); Fri, 29 May 2015 16:55:40 -0400 Received: from mout.kundenserver.de ([212.227.126.130]:59026 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757221AbbE2Uw5 (ORCPT ); Fri, 29 May 2015 16:52:57 -0400 From: Arnd Bergmann To: Greg KH Cc: Rachel Kim , Dean Lee , Chris Park , devel@driverdev.osuosl.org, nicolas.ferre@atmel.com, Johnny Kim , linux-kernel@vger.kernel.org, Arnd Bergmann Subject: [PATCH 02/16] staging: wilc1000: remove platform version checks Date: Fri, 29 May 2015 22:52:13 +0200 Message-Id: <1432932747-3739705-3-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 2.1.0.rc2 In-Reply-To: <1432932747-3739705-1-git-send-email-arnd@arndb.de> References: <1432932747-3739705-1-git-send-email-arnd@arndb.de> X-Provags-ID: V03:K0:b/qtl+8fXjwtAAAsq0y7r95LpAdaEs8FI2ODkczLNZ2Jc8eaiDo A4Miyxa1DUOaAXkoaGYnZO20zlcQ09Sp9Qkcxpw1tuzRkknujPuOpzUVseEfbQqQ1pi5+4m j0GUqLYZHd3Gs1qkq62AOTtd6H4gc3cWafF9McjerA7eZ812lQBfPzu2oo3FOzb4575ITjI R9nbhipHbpR9LJuNaBfLA== X-UI-Out-Filterresults: notjunk:1; Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org For code that is integrated into mainline Linux, checks for the OS platform make no sense, because we know that we are on Linux. This removes all checks and the associated dead code. Signed-off-by: Arnd Bergmann --- drivers/staging/wilc1000/Makefile | 3 +-- drivers/staging/wilc1000/coreconfigurator.c | 2 -- drivers/staging/wilc1000/wilc_osconfig.h | 15 --------------- drivers/staging/wilc1000/wilc_oswrapper.h | 14 -------------- 4 files changed, 1 insertion(+), 33 deletions(-) diff --git a/drivers/staging/wilc1000/Makefile b/drivers/staging/wilc1000/Makefile index 84bd975ff3be..4aa0d84ba8da 100644 --- a/drivers/staging/wilc1000/Makefile +++ b/drivers/staging/wilc1000/Makefile @@ -13,8 +13,7 @@ ccflags-y += -DSTA_FIRMWARE=\"atmel/wilc1000_fw.bin\" \ ccflags-y += -I$(src)/ -DEXPORT_SYMTAB -D__CHECK_ENDIAN__ -DWILC_ASIC_A0 \ -DPLL_WORKAROUND -DCONNECT_DIRECT -DAGING_ALG \ -DWILC_PARSE_SCAN_IN_HOST -DDISABLE_PWRSAVE_AND_SCAN_DURING_IP \ - -DWILC_PLATFORM=WILC_LINUXKERNEL -Wno-unused-function -DUSE_WIRELESS \ - -DWILC_DEBUGFS + -Wno-unused-function -DUSE_WIRELESS -DWILC_DEBUGFS #ccflags-y += -DTCP_ACK_FILTER ccflags-$(CONFIG_WILC1000_PREALLOCATE_DURING_SYSTEM_BOOT) += -DMEMORY_STATIC \ diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers/staging/wilc1000/coreconfigurator.c index 01625bdda454..d5a076ed2426 100644 --- a/drivers/staging/wilc1000/coreconfigurator.c +++ b/drivers/staging/wilc1000/coreconfigurator.c @@ -2123,7 +2123,6 @@ WILC_Sint32 CoreConfiguratorDeInit(void) #ifndef SIMULATION -#if WILC_PLATFORM != WILC_WIN32 /*Using the global handle of the driver*/ extern wilc_wlan_oup_t *gpstrWlanOps; /** @@ -2198,4 +2197,3 @@ WILC_Sint32 SendConfigPkt(WILC_Uint8 u8Mode, tstrWID *pstrWIDs, return ret; } #endif -#endif diff --git a/drivers/staging/wilc1000/wilc_osconfig.h b/drivers/staging/wilc1000/wilc_osconfig.h index 8e89702c79be..2e3700e2c1ad 100644 --- a/drivers/staging/wilc1000/wilc_osconfig.h +++ b/drivers/staging/wilc1000/wilc_osconfig.h @@ -1,18 +1,3 @@ -/* - * Automatically generated C config: don't edit - * Tue Aug 10 19:52:12 2010 - */ - -/* OSes supported */ -#define WILC_WIN32 0 -#define WILC_NU 1 -#define WILC_MTK 2 -#define WILC_LINUX 3 -#define WILC_LINUXKERNEL 4 -/* the current OS */ -/* #define WILC_PLATFORM WILC_LINUXKERNEL */ - - /* Logs options */ #define WILC_LOGS_NOTHING 0 #define WILC_LOGS_WARN 1 diff --git a/drivers/staging/wilc1000/wilc_oswrapper.h b/drivers/staging/wilc1000/wilc_oswrapper.h index e50267ec1ef4..df288c8be626 100644 --- a/drivers/staging/wilc1000/wilc_oswrapper.h +++ b/drivers/staging/wilc1000/wilc_oswrapper.h @@ -46,21 +46,7 @@ typedef WILC_Uint16 WILC_WideChar; /* Os Configuration File */ #include "wilc_osconfig.h" - -/* Platform specific include */ -#if WILC_PLATFORM == WILC_WIN32 -#include "wilc_platform.h" -#elif WILC_PLATFORM == WILC_NU -#include "wilc_platform.h" -#elif WILC_PLATFORM == WILC_MTK #include "wilc_platform.h" -#elif WILC_PLATFORM == WILC_LINUX -#include "wilc_platform.h" -#elif WILC_PLATFORM == WILC_LINUXKERNEL -#include "wilc_platform.h" -#else -#error "OS not supported" -#endif /* Logging Functions */ #include "wilc_log.h" -- 2.1.0.rc2