From: Bartlomiej Zolnierkiewicz Date: Sun, 23 Aug 2009 13:29:11 +0000 (+0200) Subject: Staging: rtxxxx: RTMPGetRalinkAuthModeStr() fixes X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2ac6ff20265b2503cb1b172ac6e4e362676aaead;p=linux-beck.git Staging: rtxxxx: RTMPGetRalinkAuthModeStr() fixes Signed-off-by: Bartlomiej Zolnierkiewicz Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rt2860/common/cmm_info.c b/drivers/staging/rt2860/common/cmm_info.c index 306c3a21f905..9f3263369edd 100644 --- a/drivers/staging/rt2860/common/cmm_info.c +++ b/drivers/staging/rt2860/common/cmm_info.c @@ -2725,9 +2725,6 @@ PCHAR RTMPGetRalinkAuthModeStr( { case Ndis802_11AuthModeOpen: return "OPEN"; -#if defined(RT2860) || defined(RT30xx) - default: -#endif case Ndis802_11AuthModeWPAPSK: return "WPAPSK"; case Ndis802_11AuthModeShared: @@ -2742,14 +2739,10 @@ PCHAR RTMPGetRalinkAuthModeStr( return "WPAPSKWPA2PSK"; case Ndis802_11AuthModeWPA1WPA2: return "WPA1WPA2"; -#ifndef RT30xx case Ndis802_11AuthModeWPANone: return "WPANONE"; -#ifdef RT2870 default: return "UNKNOW"; -#endif -#endif } }