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:
parent
f5978a55c7
commit
cc6ff433b3
4
Kbuild
4
Kbuild
@ -2478,11 +2478,7 @@ OBJS += $(FWOL_OBJS)
|
|||||||
endif
|
endif
|
||||||
OBJS += $(BLM_OBJS)
|
OBJS += $(BLM_OBJS)
|
||||||
OBJS += $(COEX_OBJS)
|
OBJS += $(COEX_OBJS)
|
||||||
|
|
||||||
ifeq ($(CONFIG_WLAN_FEATURE_DSRC), y)
|
|
||||||
OBJS += $(OCB_OBJS)
|
OBJS += $(OCB_OBJS)
|
||||||
endif
|
|
||||||
|
|
||||||
OBJS += $(IPA_OBJS)
|
OBJS += $(IPA_OBJS)
|
||||||
OBJS += $(PKTLOG_OBJS)
|
OBJS += $(PKTLOG_OBJS)
|
||||||
OBJS += $(HOST_DIAG_LOG_OBJS)
|
OBJS += $(HOST_DIAG_LOG_OBJS)
|
||||||
|
Loading…
Reference in New Issue
Block a user