summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnson <jjohnson@codeaurora.org>2017-01-31 15:57:35 -0800
committerqcabuildsw <qcabuildsw@localhost>2017-02-22 23:42:02 -0800
commit8c7c9456fdce7c43acded0a1136495099d39e960 (patch)
tree4cdfdbb10bfa2b3849a6a099f9dedf5d358c903e
parentb294cebbaf3ff078a357f413159f50a0b890e9ec (diff)
qcacld-3.0: Fix Kbuild path for wma_ocb.o
When CONFIG_WLAN_FEATURE_DSRC is enabled the resulting build fails because there is no rule to make wma_ocb.o. The issue is that there is a typo in the rule, so fix the rule. Change-Id: I1b724736fcac175b9bf83e4a98878e1333a54b57 CRs-Fixed: 2002874
-rw-r--r--Kbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kbuild b/Kbuild
index 367c132bff00..f19b2dcefe32 100644
--- a/Kbuild
+++ b/Kbuild
@@ -986,7 +986,7 @@ WMA_OBJS := $(WMA_SRC_DIR)/wma_main.o \
$(WMA_NDP_OBJS)
ifeq ($(CONFIG_WLAN_FEATURE_DSRC), y)
-WMA_OBJS+= $(WMA_DIR)/wma_ocb.o
+WMA_OBJS+= $(WMA_SRC_DIR)/wma_ocb.o
endif
ifeq ($(CONFIG_MPC_UT_FRAMEWORK),y)
WMA_OBJS += $(WMA_SRC_DIR)/wma_utils_ut.o