qcacld-3.0: Kbuild: Cleanup OCB_OBJS logic

Currently OCB_OBJS are added to OBJS when CONFIG_WLAN_FEATURE_DSRC is
enabled.  An upcoming change requires that assignments to OBJS be
unconditional. Fortunately the assignment of .o files to OCB_OBJS is
already conditional upon CONFIG_WLAN_FEATURE_DSRC so remove the
condition from the assignment to OBJS.

Change-Id: I011aa37270b8024d2f558bdb18aac2a02e3c1026
CRs-Fixed: 2868002
This commit is contained in:
Jeff Johnson 2021-02-01 13:38:00 -08:00 committed by snandini
parent f5978a55c7
commit cc6ff433b3

4
Kbuild
View File

@ -2478,11 +2478,7 @@ OBJS += $(FWOL_OBJS)
endif
OBJS += $(BLM_OBJS)
OBJS += $(COEX_OBJS)
ifeq ($(CONFIG_WLAN_FEATURE_DSRC), y)
OBJS += $(OCB_OBJS)
endif
OBJS += $(IPA_OBJS)
OBJS += $(PKTLOG_OBJS)
OBJS += $(HOST_DIAG_LOG_OBJS)