aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authorMathew McBride <matt@traverse.com.au>2023-08-14 06:13:28 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2023-08-15 15:55:00 +0200
commit7770d08e2bd28c9c0dc0b3dc0aaf74074ad5772a (patch)
tree1d6050c588582504f78cc62b6d6a6d367f591dd1 /target/linux
parent9cb173e9f18da2530c3570479567d8130b05e5f8 (diff)
downloadupstream-7770d08e2bd28c9c0dc0b3dc0aaf74074ad5772a.tar.gz
upstream-7770d08e2bd28c9c0dc0b3dc0aaf74074ad5772a.tar.bz2
upstream-7770d08e2bd28c9c0dc0b3dc0aaf74074ad5772a.zip
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@traverse.com.au> Fixes: c3151b6f045 ("armvirt: 64: add support for other SystemReady-compatible vendors")
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/armsr/modules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/armsr/modules.mk b/target/linux/armsr/modules.mk
index 446b1483d22..6e9ecda9990 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 \