wlan: mac: remove obsolete "WLAN_SOFTAP_FEATURE" featurization

The current driver has evolved over time from a driver that originally
only supported "station" mode.  When the initial support for "Soft AP"
mode was added, the code was added with conditional compilation so
that the "Soft AP" feature could be included or excluded based upon
the target needs.  Now, however, there is an expectation that all
drivers will support both "station" mode and "Soft AP" mode.
Therefore remove the conditional compilation since "Soft AP" mode code
must always be present.

CRs-fixed: 452041
Change-Id: Ieb86ce1ff8964672de60be65ef34cf04f15d9348
diff --git a/CORE/MAC/inc/aniSystemDefs.h b/CORE/MAC/inc/aniSystemDefs.h
index 27f118b..bc84d61 100644
--- a/CORE/MAC/inc/aniSystemDefs.h
+++ b/CORE/MAC/inc/aniSystemDefs.h
@@ -138,9 +138,7 @@
     eSIR_TX_ONLY,
     eSIR_RX_ONLY,
     eSIR_TX_RX,
-#ifdef WLAN_SOFTAP_FEATURE
     eSIR_TX_DEFAULT,
-#endif
     eSIR_DONOT_USE_KEY_DIRECTION = SIR_MAX_ENUM_SIZE
 } tAniKeyDirection;
 
@@ -181,12 +179,12 @@
 
 #ifdef FEATURE_WLAN_CCX
 
-// The CCKM IE needs to be in the 
-// Join and Reassoc Req. 
+// The CCKM IE needs to be in the
+// Join and Reassoc Req.
 typedef struct sSirCCKMie
 {
     tANI_U16       length;
-    tANI_U8        cckmIEdata[SIR_MAC_MAX_IE_LENGTH+2];  
+    tANI_U8        cckmIEdata[SIR_MAC_MAX_IE_LENGTH+2];
 } tSirCCKMie, *tpSirCCKMie;
 
 #endif