From dbe42db611fa2fc809c63428b239e8be9a9f3b7a Mon Sep 17 00:00:00 2001 From: Yanfeng Liu Date: Thu, 1 Feb 2024 12:49:33 +0800 Subject: [PATCH] arch/Kconfig: replace RPTUN_PING with RPMSG_PING The RPTUN_PING option has been replaced by RPMSG_PING but this use for PERF_EVENTS is left behind, so replace it here as well. Signed-off-by: Yanfeng Liu --- arch/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/Kconfig b/arch/Kconfig index 3173dcf3ab..d5de8d324d 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -523,7 +523,7 @@ config ARCH_HAVE_PERF_EVENTS config ARCH_PERF_EVENTS bool "Configure hardware performance counting" - default y if SCHED_CRITMONITOR || SCHED_IRQMONITOR || RPTUN_PING || SEGGER_SYSVIEW + default y if SCHED_CRITMONITOR || SCHED_IRQMONITOR || RPMSG_PING || SEGGER_SYSVIEW default n depends on ARCH_HAVE_PERF_EVENTS ---help---