From 2474fb48c685f50e3b923fece19d672c8f5a9757 Mon Sep 17 00:00:00 2001 From: Peter Ujfalusi Date: Fri, 23 Sep 2022 08:40:04 +0300 Subject: [PATCH] topology2: Revert the conditional topology2 building for CAVS/ACE The MTL support added conditional build for topology2 based on CONFIG_CAVS or CONFIG_ACE. This is wrong for several reasons: There is not ace directory present The Kconfig system is not used when building topologies, so we are ending up not building topology2 files at all. There is no reason why CAVS and ACE topologies should be exclusive. Fixes: 784bce763c0e ("mtl: Added meteorlake platform to the build system") Signed-off-by: Peter Ujfalusi --- tools/topology/topology2/CMakeLists.txt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/topology/topology2/CMakeLists.txt b/tools/topology/topology2/CMakeLists.txt index cbc12d09e..ae5d2b2b1 100644 --- a/tools/topology/topology2/CMakeLists.txt +++ b/tools/topology/topology2/CMakeLists.txt @@ -17,8 +17,4 @@ else() endif() endif() -if (CONFIG_CAVS) add_subdirectory(cavs) -elseif(CONFIG_ACE) -add_subdirectory(ace) -endif()