qcacld-3.0: Use WLAN_WEAR_CHIPSET to modify INI path
On Wear HL based target with keystone kernel, it generates WLAN driver with name "qca_cld3_wlan.ko" based on macro definition WLAN_WEAR_CHIPSET. But the driver was not loading because of the old INI path and /dev path. This commit modifies the INI path and /dev path based on macro defined i.e. WLAN_WEAR_CHIPSET. Change-Id: I6d457a3bb708de3175c40b0f2b3ba0ebde915838 CRs-Fixed: 3168115
Dieser Commit ist enthalten in:

committet von
Madan Koyyalamudi

Ursprung
5116bc8f8f
Commit
e2e3e0326e
6
Makefile
6
Makefile
@@ -15,9 +15,9 @@ ifeq ($(WLAN_ROOT),)
|
||||
# WLAN_ROOT must contain an absolute path (i.e. not a relative path)
|
||||
KBUILD_OPTIONS := WLAN_ROOT=$(shell cd $(KERNEL_SRC); readlink -e $(M))
|
||||
|
||||
# MODNAME should be qca_cld3_wlan for helium based platform
|
||||
ifeq (qca_cld3, $(WLAN_CHIPSET))
|
||||
KBUILD_OPTIONS += MODNAME?=$(WLAN_CHIPSET)_wlan
|
||||
# MODNAME should be qca_cld3_wlan for helium based wear target
|
||||
ifeq (qca_cld3, $(WLAN_WEAR_CHIPSET))
|
||||
KBUILD_OPTIONS += MODNAME?=$(WLAN_WEAR_CHIPSET)_wlan
|
||||
else
|
||||
KBUILD_OPTIONS += MODNAME?=wlan
|
||||
endif
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren