summaryrefslogtreecommitdiff
path: root/wl1271/platforms/os/common
diff options
context:
space:
mode:
Diffstat (limited to 'wl1271/platforms/os/common')
-rw-r--r--wl1271/platforms/os/common/build/linux/common.inc10
-rw-r--r--wl1271/platforms/os/common/src/osRgstry.c6
2 files changed, 14 insertions, 2 deletions
diff --git a/wl1271/platforms/os/common/build/linux/common.inc b/wl1271/platforms/os/common/build/linux/common.inc
index 305e8642..86e9235c 100644
--- a/wl1271/platforms/os/common/build/linux/common.inc
+++ b/wl1271/platforms/os/common/build/linux/common.inc
@@ -33,6 +33,12 @@ FW ?= 1273
#
XCC ?= n
+
+#
+# Compile with GEM support or not
+#
+GEM ?= n
+
#
# Choose the bus type (n for SDIO, y for WSPI)
#
@@ -84,6 +90,10 @@ ifeq ($(XCC),y)
DK_DEFINES += -D XCC_MODULE_INCLUDED
endif
+ifeq ($(GEM),y)
+ DK_DEFINES += -D GEM_SUPPORTED
+endif
+
ifeq ($(INTR),n)
DK_DEFINES += -D PRIODIC_INTERRUPT
endif
diff --git a/wl1271/platforms/os/common/src/osRgstry.c b/wl1271/platforms/os/common/src/osRgstry.c
index 736d8726..f2cc7311 100644
--- a/wl1271/platforms/os/common/src/osRgstry.c
+++ b/wl1271/platforms/os/common/src/osRgstry.c
@@ -161,8 +161,10 @@ NDIS_STRING STRdot11BasicRateMask_A = NDIS_STRING_CONST( "dot11BasicRa
NDIS_STRING STRdot11SupportedRateMask_A = NDIS_STRING_CONST( "dot11SupportedRateMaskA");
NDIS_STRING STRdot11BasicRateMask_AG = NDIS_STRING_CONST( "dot11BasicRateMaskAG");
NDIS_STRING STRdot11SupportedRateMask_AG = NDIS_STRING_CONST( "dot11SupportedRateMaskAG");
-NDIS_STRING STRdot11BasicRateMask_N = NDIS_STRING_CONST( "STRdot11BasicRateMask_N");
-NDIS_STRING STRdot11SupportedRateMask_N = NDIS_STRING_CONST( "STRdot11SupportedRateMask_N");
+/*** MODS_BEGIN_FOR_11N_RATE_REPORTING ***/
+NDIS_STRING STRdot11BasicRateMask_N = NDIS_STRING_CONST( "dot11BasicRateMask_N");
+NDIS_STRING STRdot11SupportedRateMask_N = NDIS_STRING_CONST( "dot11SupportedRateMask_N");
+/*** MODS_END_FOR_11N_RATE_REPORTING ***/
NDIS_STRING STRRadio11_RxLevel = NDIS_STRING_CONST( "Radio11_RxLevel");
NDIS_STRING STRRadio11_LNA = NDIS_STRING_CONST( "Radio11_LNA");