From 8ed1e6329289367d9db2bb10cfee44598197e9da Mon Sep 17 00:00:00 2001 From: Huang Qi Date: Wed, 18 Mar 2026 19:55:14 +0800 Subject: [PATCH] arch/risc-v/hpm6000: Use WDOGx naming for watchdog peripherals Fix duplicate watchdog prompts in Kconfig by using unique WDOG0, WDOG1, WDOG2 names instead of generic 'watchdog' label. This matches the UART peripheral naming convention in the same file and makes it clear which watchdog is being configured in menuconfig. Signed-off-by: Huang Qi --- arch/risc-v/src/hpm6000/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/risc-v/src/hpm6000/Kconfig b/arch/risc-v/src/hpm6000/Kconfig index 9644189f643..c6be1edbd03 100644 --- a/arch/risc-v/src/hpm6000/Kconfig +++ b/arch/risc-v/src/hpm6000/Kconfig @@ -34,15 +34,15 @@ config HPM_ENET menu "Watchdog" config HPM_WDOG0 - bool "watchdog" + bool "WDOG0" default n config HPM_WDOG1 - bool "watchdog" + bool "WDOG1" default n config HPM_WDOG2 - bool "watchdog" + bool "WDOG2" default n endmenu # Watchdog