فهرست منبع

qcacld-3.0: Enable single-target SPF support

Currently the SPF support is triggered when there is more than one
target specified in TARGET_WLAN_CHIP. For taro we know we need
multi-target support in the future, but we only want to support a
single target during bringup. However we want all procedures
established during the bringup process to be applicable to the final
product. Therefore update the logic such that SPF support is triggered
whenever the TARGET_WLAN_CHIP is anything other than the default value
of 'wlan'.

Change-Id: I0a0671d2ebbdb85985bc57376b4acd2bd79a16ae
CRs-Fixed: 2890488
Jeff Johnson 4 سال پیش
والد
کامیت
27b941b7b8
1فایلهای تغییر یافته به همراه3 افزوده شده و 5 حذف شده
  1. 3 5
      Android.mk

+ 3 - 5
Android.mk

@@ -47,14 +47,12 @@ LOCAL_DEV_NAME := $(patsubst .%,%,\
 $(call wlog,LOCAL_DEV_NAME=$(LOCAL_DEV_NAME))
 $(call wlog,TARGET_WLAN_CHIP=$(TARGET_WLAN_CHIP))
 
-ifeq (1, $(strip $(shell expr $(words $(strip $(TARGET_WLAN_CHIP))) \>= 2)))
-
+TARGET_WLAN_CHIP ?= wlan
+LOCAL_MULTI_KO := false
+ifneq ($(TARGET_WLAN_CHIP), wlan)
 ifeq ($(LOCAL_DEV_NAME), qcacld-3.0)
 LOCAL_MULTI_KO := true
-else
-LOCAL_MULTI_KO := false
 endif
-
 endif
 
 ifeq ($(LOCAL_MULTI_KO), true)