summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJes Sorensen <Jes.Sorensen@redhat.com>2014-05-21 07:38:22 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-05-23 07:27:50 (GMT)
commitf3c9d6409be5ec1d8925be2f04daaa0f6a9ff3bb (patch)
treebeb462ed810b0cddaeabfea3859a669143ccd014
parenta402b8003ca35ce51d29bf24a93f9e7c099edb83 (diff)
downloadlinux-f3c9d6409be5ec1d8925be2f04daaa0f6a9ff3bb.tar.xz
staging: rtl8723au: Don't compile rtw_ap.c when CONFIG_8723AU_AP_MODE=n
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/rtl8723au/Makefile2
-rw-r--r--drivers/staging/rtl8723au/core/rtw_ap.c4
2 files changed, 1 insertions, 5 deletions
diff --git a/drivers/staging/rtl8723au/Makefile b/drivers/staging/rtl8723au/Makefile
index f0615d6..a6316af 100644
--- a/drivers/staging/rtl8723au/Makefile
+++ b/drivers/staging/rtl8723au/Makefile
@@ -1,5 +1,4 @@
r8723au-y := \
- core/rtw_ap.o \
core/rtw_cmd.o \
core/rtw_efuse.o \
core/rtw_ioctl_set.o \
@@ -50,6 +49,7 @@ r8723au-y := \
os_dep/xmit_linux.o
r8723au-$(CONFIG_8723AU_BT_COEXIST) += hal/rtl8723a_bt-coexist.o
+r8723au-$(CONFIG_8723AU_AP_MODE) += core/rtw_ap.o
obj-$(CONFIG_R8723AU) := r8723au.o
diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c b/drivers/staging/rtl8723au/core/rtw_ap.c
index 850e2e5..c8700b3 100644
--- a/drivers/staging/rtl8723au/core/rtw_ap.c
+++ b/drivers/staging/rtl8723au/core/rtw_ap.c
@@ -21,8 +21,6 @@
#include <rtl8723a_cmd.h>
#include <rtl8723a_hal.h>
-#ifdef CONFIG_8723AU_AP_MODE
-
extern unsigned char WMM_OUI23A[];
extern unsigned char WPS_OUI23A[];
extern unsigned char P2P_OUI23A[];
@@ -2028,5 +2026,3 @@ void stop_ap_mode23a(struct rtw_adapter *padapter)
rtw23a_free_mlme_priv_ie_data(pmlmepriv);
}
-
-#endif /* CONFIG_8723AU_AP_MODE */