qcacld-3.0: Enable qdf hashtable feature

Enable the QDF hashtable feature, recently added in
I07999e5fc8116e67b3850b866ced20af64342055.

Change-Id: I1dcdee7d960e87bda980e3d6e646e22149208dad
CRs-Fixed: 2359334
This commit is contained in:
Dustin Brown 2018-11-30 11:33:57 -08:00 committed by nshrivas
parent 5eb57d96ae
commit 6fb7a754ca
2 changed files with 4 additions and 0 deletions

2
Kbuild
View File

@ -575,9 +575,11 @@ ifeq ($(CONFIG_LEAK_DETECTION), y)
endif
ifeq ($(CONFIG_QDF_TEST), y)
QDF_OBJS += $(QDF_TEST_OBJ_DIR)/qdf_hashtable_test.o
QDF_OBJS += $(QDF_TEST_OBJ_DIR)/qdf_types_test.o
endif
cppflags-$(CONFIG_QDF_TEST) += -DWLAN_HASHTABLE_TEST
cppflags-$(CONFIG_QDF_TEST) += -DWLAN_TYPES_TEST
############ WBUFF ############

View File

@ -66,6 +66,7 @@
#include "qc_sap_ioctl.h"
#include "sme_api.h"
#include "wma_types.h"
#include "qdf_hashtable_test.h"
#include "qdf_str.h"
#include "qdf_trace.h"
#include "qdf_types_test.h"
@ -5391,6 +5392,7 @@ struct hdd_ut_entry {
struct hdd_ut_entry hdd_ut_entries[] = {
{ .name = "dsc", .callback = dsc_unit_test },
{ .name = "ht", .callback = qdf_ht_unit_test },
{ .name = "types", .callback = qdf_types_unit_test },
};