mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
ath6kl: use CONFIG_AR600x_WB31_XXX
When CONFIG_AR600x_WB31_XXX gets enabled we define another flag called AR600x_WB31_XXX, just use CONFIG_AR600x_WB31_XXX since that is already defined by the generated autoconf header file from the kernel. Cc: Naveen Singh <nsingh@atheros.com> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
492543eae4
commit
1e6d4562eb
@@ -29,10 +29,6 @@ ccflags-y += -I$(obj)/os
|
||||
ccflags-y += -I$(obj)/bmi/include
|
||||
ccflags-y += -I$(obj)/include/common/AR6002/hw4.0
|
||||
|
||||
ifeq ($(CONFIG_AR600x_WB31_XXX),y)
|
||||
ccflags-y += -DAR600x_WB31_XXX
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_AR600x_SD32_XXX),y)
|
||||
ccflags-y += -DAR600x_SD32_XXX
|
||||
endif
|
||||
|
||||
@@ -287,7 +287,7 @@ typedef enum _AR6K_BIN_FILE {
|
||||
#define AR6003_REV1_BOARD_DATA_FILE "ath6k/AR6003/hw1.0/bdata.SD31.bin"
|
||||
#elif defined(AR600x_SD32_XXX)
|
||||
#define AR6003_REV1_BOARD_DATA_FILE "ath6k/AR6003/hw1.0/bdata.SD32.bin"
|
||||
#elif defined(AR600x_WB31_XXX)
|
||||
#elif defined(CONFIG_AR600x_WB31_XXX)
|
||||
#define AR6003_REV1_BOARD_DATA_FILE "ath6k/AR6003/hw1.0/bdata.WB31.bin"
|
||||
#else
|
||||
#define AR6003_REV1_BOARD_DATA_FILE "ath6k/AR6003/hw1.0/bdata.CUSTOM.bin"
|
||||
@@ -307,7 +307,7 @@ typedef enum _AR6K_BIN_FILE {
|
||||
#define AR6003_REV2_BOARD_DATA_FILE "ath6k/AR6003/hw2.0/bdata.SD31.bin"
|
||||
#elif defined(AR600x_SD32_XXX)
|
||||
#define AR6003_REV2_BOARD_DATA_FILE "ath6k/AR6003/hw2.0/bdata.SD32.bin"
|
||||
#elif defined(AR600x_WB31_XXX)
|
||||
#elif defined(CONFIG_AR600x_WB31_XXX)
|
||||
#define AR6003_REV2_BOARD_DATA_FILE "ath6k/AR6003/hw2.0/bdata.WB31.bin"
|
||||
#else
|
||||
#define AR6003_REV2_BOARD_DATA_FILE "ath6k/AR6003/hw2.0/bdata.CUSTOM.bin"
|
||||
|
||||
Reference in New Issue
Block a user