qcacld-3.0: Kbuild: Cleanup IPA_OBJS logic

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

Change-Id: I16217146d44b790298e47516c28e1ce6445ffed6
CRs-Fixed: 2868001
This commit is contained in:
Jeff Johnson 2021-02-01 13:33:58 -08:00 committed by snandini
parent 5bf0a3641d
commit f5978a55c7

3
Kbuild
View File

@ -2483,10 +2483,7 @@ ifeq ($(CONFIG_WLAN_FEATURE_DSRC), y)
OBJS += $(OCB_OBJS)
endif
ifeq ($(CONFIG_IPA_OFFLOAD), y)
OBJS += $(IPA_OBJS)
endif
OBJS += $(PKTLOG_OBJS)
OBJS += $(HOST_DIAG_LOG_OBJS)
OBJS += $(DISA_OBJS)