diff options
author | Tom Rini <trini@konsulko.com> | 2025-07-01 19:04:26 -0600 |
---|---|---|
committer | Leo Yu-Chi Liang <ycliang@andestech.com> | 2025-07-03 18:11:06 +0800 |
commit | f62062a64daeb3f3b148372d0afae3821aff16de (patch) | |
tree | 4b2610aae9d9b165f9b431e50923a0ea532d62c0 | |
parent | 7c16ebba1ed021f284f98260b378141bf7b9c59a (diff) |
cache: Update dependency for ANDES_L2_CACHE
The cache driver here can only build on RISCV due to header
dependencies. Express that requirement in Kconfig as well.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
-rw-r--r-- | drivers/cache/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/cache/Kconfig b/drivers/cache/Kconfig index 4f358657444..f5bcd406a50 100644 --- a/drivers/cache/Kconfig +++ b/drivers/cache/Kconfig @@ -24,6 +24,7 @@ config L2X0_CACHE config ANDES_L2_CACHE bool "Andes L2 cache driver" + depends on RISCV select CACHE help Support Andes L2 cache controller in AE350 platform. |