[PATCH] perf: andes: support ANDES_CUSTOM_PMU on ARCH_ANDES

Hui Min Mina Chou posted 1 patch 3 days, 8 hours ago
drivers/perf/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] perf: andes: support ANDES_CUSTOM_PMU on ARCH_ANDES
Posted by Hui Min Mina Chou 3 days, 8 hours ago
From: Charles Ci-Jyun Wu <dminus@andestech.com>

Modify ANDES_CUSTOM_PMU Kconfig dependency to include both
ARCH_ANDES and ARCH_RENESAS platforms. Previously, it depended only
on ARCH_RENESAS, which prevented PMU IRQ from being enabled correctly
on Andes platforms

Signed-off-by: Cynthia Huang <cynthia@andestech.com>
Signed-off-by: Charles Ci-Jyun Wu <dminus@andestech.com>
---
 drivers/perf/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/perf/Kconfig b/drivers/perf/Kconfig
index 638321fc9800..39e174d36336 100644
--- a/drivers/perf/Kconfig
+++ b/drivers/perf/Kconfig
@@ -117,7 +117,7 @@ config STARFIVE_STARLINK_PMU
 
 config ANDES_CUSTOM_PMU
 	bool "Andes custom PMU support"
-	depends on ARCH_RENESAS && RISCV_ALTERNATIVE && RISCV_PMU_SBI
+	depends on (ARCH_ANDES || ARCH_RENESAS) && RISCV_ALTERNATIVE && RISCV_PMU_SBI
 	default y
 	help
 	  The Andes cores implement the PMU overflow extension very
-- 
2.34.1