소스 검색

qcacld-3.0: Kbuild: Cleanup DISA_OBJS logic

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

Change-Id: I2130b8efe12e5366b40856704d62d000a4e474f4
CRs-Fixed: 2867998
Jeff Johnson 4 년 전
부모
커밋
e142b34639
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      Kbuild

+ 0 - 3
Kbuild

@@ -2574,10 +2574,7 @@ ifeq ($(BUILD_DIAG_VERSION), y)
 OBJS +=		$(HOST_DIAG_LOG_OBJS)
 endif
 
-ifeq ($(CONFIG_WLAN_FEATURE_DISA), y)
 OBJS +=		$(DISA_OBJS)
-endif
-
 OBJS +=		$(ACTION_OUI_OBJS)
 OBJS +=		$(PKT_CAPTURE_OBJS)
 OBJS +=		$(FTM_TIME_SYNC_OBJS)