From a66a721464a1858878c2705be03d07487bab39ea Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Mon, 8 Jan 2024 13:59:18 +0900 Subject: [PATCH] soc: sifivie: Kconfig: Fix the dependeny issue SIFIVE_FLUSH has a dependent with SIFIVE_CCACHE. To use SIFIVE_FLUSH, SIFIVE_CCACHE has to be enabled. Change-Id: I91402d7133dc5e8de36ad36f0fdaa8e2fc447ab6 Signed-off-by: Jaehoon Chung --- drivers/soc/sifive/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/soc/sifive/Kconfig b/drivers/soc/sifive/Kconfig index c6e356edabb9..1c98de3f0fa0 100644 --- a/drivers/soc/sifive/Kconfig +++ b/drivers/soc/sifive/Kconfig @@ -8,6 +8,7 @@ config SIFIVE_CCACHE Support for the composable cache controller on SiFive platforms. config SIFIVE_FLUSH + depends on SIFIVE_CCACHE bool "Support Level 2 Cache Controller Flush operation of SiFive Soc" if SIFIVE_FLUSH -- 2.34.1