Comment out options that cannot be supported

XR is not supported by the open HAL.  TX99 cannot be enabled because
requisite files are missing.


git-svn-id: http://madwifi-project.org/svn/madwifi/trunk@4145 0192ed92-7a03-0410-a25b-9323aeb14dbd
This commit is contained in:
proski 2011-06-22 20:32:48 +00:00
parent e294cce512
commit b56cc910bc
1 changed files with 12 additions and 12 deletions

View File

@ -13,17 +13,17 @@ ifndef ATH_CAP_SUPERG_COMP
export ATH_CAP_SUPERG_COMP=0 export ATH_CAP_SUPERG_COMP=0
endif endif
ifndef ATH_CAP_XR # ifndef ATH_CAP_XR
export ATH_CAP_XR=0 # export ATH_CAP_XR=0
endif # endif
ifndef ATH_CAP_TPC ifndef ATH_CAP_TPC
export ATH_CAP_TPC=1 export ATH_CAP_TPC=1
endif endif
ifndef ATH_CAP_TX99 # ifndef ATH_CAP_TX99
export ATH_CAP_TX99=0 # export ATH_CAP_TX99=0
endif # endif
# #
# directives # directives
@ -40,14 +40,14 @@ ifneq ($(strip $(ATH_CAP_SUPERG_COMP)),0)
COPTS+= -DATH_SUPERG_COMP=1 COPTS+= -DATH_SUPERG_COMP=1
endif endif
ifneq ($(strip $(ATH_CAP_XR)),0) # ifneq ($(strip $(ATH_CAP_XR)),0)
COPTS+= -DATH_SUPERG_XR=1 # COPTS+= -DATH_SUPERG_XR=1
endif # endif
ifneq ($(strip $(ATH_CAP_TPC)),0) ifneq ($(strip $(ATH_CAP_TPC)),0)
COPTS+= -DATH_CAP_TPC=1 COPTS+= -DATH_CAP_TPC=1
endif endif
ifneq ($(strip $(ATH_CAP_TX99)),0) # ifneq ($(strip $(ATH_CAP_TX99)),0)
COPTS+= -DATH_TX99_DIAG=1 # COPTS+= -DATH_TX99_DIAG=1
endif # endif