From: Glen Lee Date: Wed, 16 Sep 2015 01:43:47 +0000 (+0900) Subject: staging: wilc1000: remove useless define PHY_802_11n X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d30244a032f2e05e5125b45f20648ebe7dec2798;p=linux-beck.git staging: wilc1000: remove useless define PHY_802_11n The define PHY_802_11n is useless because wilc1000 support 802.11n as always. Remove PHY_802_11n and it related code. Signed-off-by: Glen Lee Signed-off-by: Tony Cho Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers/staging/wilc1000/coreconfigurator.c index 8164a33c6732..c46fe9f1bc88 100644 --- a/drivers/staging/wilc1000/coreconfigurator.c +++ b/drivers/staging/wilc1000/coreconfigurator.c @@ -17,7 +17,6 @@ /* Constants */ /*****************************************************************************/ #define INLINE static __inline -#define PHY_802_11n #define MAX_CFG_PKTLEN 1450 #define MSG_HEADER_LEN 4 #define QUERY_MSG_TYPE 'Q' @@ -551,7 +550,6 @@ u8 get_current_channel_802_11n(u8 *pu8msa, u16 u16RxLen) u8 get_current_channel(u8 *pu8msa, u16 u16RxLen) { -#ifdef PHY_802_11n #ifdef FIVE_GHZ_BAND /* Get the current channel as its not set in */ /* 802.11a beacons/probe response */ @@ -561,9 +559,6 @@ u8 get_current_channel(u8 *pu8msa, u16 u16RxLen) /* the beacon/probe response frame */ return get_current_channel_802_11n(pu8msa, u16RxLen); #endif /* FIVE_GHZ_BAND */ -#else - return 0; -#endif /* PHY_802_11n */ } /**