summaryrefslogtreecommitdiff
path: root/src/drivers/wifi
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2024-04-17 16:46:28 +0200
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2024-05-03 21:40:24 +0000
commit6daeda89cd43636f829e68fd33aef603136620a1 (patch)
treecfaf4f7e458c1aed0617084c5103f3196a03b461 /src/drivers/wifi
parent7f7a6e8f7a570b3d865a255763ef290e554d9b78 (diff)
drivers/wifi/generic: Fix a typo on symbol
WIFI_MTCL_CBFS_FILEPATH is now used. Change-Id: Icdd0332ae9c56a54596a775c0a9aa7b9f8d6738c Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81974 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/drivers/wifi')
-rw-r--r--src/drivers/wifi/generic/Makefile.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/wifi/generic/Makefile.mk b/src/drivers/wifi/generic/Makefile.mk
index 2231115f76..4ccc934edb 100644
--- a/src/drivers/wifi/generic/Makefile.mk
+++ b/src/drivers/wifi/generic/Makefile.mk
@@ -20,12 +20,12 @@ wifi_sar_defaults.hex-type := raw
endif
-CONFIG_MTCL_CBFS_FILEPATH := $(call strip_quotes,$(CONFIG_MTCL_CBFS_FILEPATH))
+CONFIG_WIFI_MTCL_CBFS_FILEPATH := $(call strip_quotes,$(CONFIG_WIFI_MTCL_CBFS_FILEPATH))
-ifneq ($(CONFIG_MTCL_CBFS_FILEPATH),)
+ifneq ($(CONFIG_WIFI_MTCL_CBFS_FILEPATH),)
cbfs-files-$(CONFIG_USE_MTCL) += wifi_mtcl.bin
-wifi_mtcl.bin-file := $(CONFIG_MTCL_CBFS_FILEPATH)
+wifi_mtcl.bin-file := $(CONFIG_WIFI_MTCL_CBFS_FILEPATH)
wifi_mtcl.bin-type := raw
endif