[openwrt/openwrt] armsr: armv8: fix invalid symbol value for FSL_ENETC_QOS
LEDE Commits
lede-commits at lists.infradead.org
Sat Aug 19 06:12:49 PDT 2023
hauke pushed a commit to openwrt/openwrt.git, branch openwrt-23.05:
https://git.openwrt.org/cebed31c1f632f7fbab142574ea1fb9065917fdb
commit cebed31c1f632f7fbab142574ea1fb9065917fdb
Author: Mathew McBride <matt at traverse.com.au>
AuthorDate: Mon Aug 14 06:13:28 2023 +0000
armsr: armv8: fix invalid symbol value for FSL_ENETC_QOS
The kernel FSL_ENETC_QOS option is only a compile time
option, it does not result in a separate module being built.
Set it to 'y' to resolve a warning from the kernel compile:
.config:2654:warning: symbol value 'm' invalid for FSL_ENETC_QOS
Signed-off-by: Mathew McBride <matt at traverse.com.au>
Fixes: c3151b6f045 ("armvirt: 64: add support for other SystemReady-compatible vendors")
(cherry picked from commit 7770d08e2bd28c9c0dc0b3dc0aaf74074ad5772a)
---
target/linux/armsr/modules.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/target/linux/armsr/modules.mk b/target/linux/armsr/modules.mk
index c594017ec0..9c7fe0c04f 100644
--- a/target/linux/armsr/modules.mk
+++ b/target/linux/armsr/modules.mk
@@ -100,7 +100,7 @@ define KernelPackage/fsl-enetc-net
KCONFIG:= \
CONFIG_FSL_ENETC \
CONFIG_FSL_ENETC_VF \
- CONFIG_FSL_ENETC_QOS
+ CONFIG_FSL_ENETC_QOS=y
FILES:= \
$(LINUX_DIR)/drivers/net/ethernet/freescale/enetc/fsl-enetc.ko \
$(LINUX_DIR)/drivers/net/ethernet/freescale/enetc/fsl-enetc-vf.ko \
More information about the lede-commits
mailing list