qcacld-3.0: Fix bazel-related changes

With changes to bazel in upstream kernel, driver is currently not
building properly. Fix these bazel-related changes to be in line with
upstream kernel changes and resolve the build issues.

Change-Id: I99fb7b1aaa8cd70b4326a858d46de7c034b0549f
CRs-Fixed: 3539623
This commit is contained in:
Alan Chen
2023-06-23 17:50:37 -07:00
committed by Rahul Choudhary
parent 30ca608b32
commit 5fef728db3
2 changed files with 2 additions and 8 deletions

View File

@@ -2043,7 +2043,7 @@ _conditional_srcs = {
},
"CONFIG_AFC_SUPPORT": {
True: [
"core/hdd/src/wlan_hdd_afc.c",
"core/hdd/src/wlan_hdd_afc.c",
],
},
"CONFIG_WLAN_FEATURE_LL_LT_SAP": {
@@ -2058,7 +2058,7 @@ _conditional_srcs = {
def _define_module_for_target_variant_chipset(target, variant, chipset):
tvc = "{}_{}_{}".format(target, variant, chipset)
tv = "{}_{}".format(target, variant)
name = "qca_cld_{}".format(tvc)
name = "{}_qca_cld_{}".format(tv, chipset)
hw = _chipset_hw_map[chipset]
chipset_ipaths = _chipset_header_map[chipset]
hw_ipaths = _hw_header_map[hw]