This is an automated email from the ASF dual-hosted git repository.

linguini pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 8ed1e632928 arch/risc-v/hpm6000: Use WDOGx naming for watchdog 
peripherals
8ed1e632928 is described below

commit 8ed1e6329289367d9db2bb10cfee44598197e9da
Author: Huang Qi <[email protected]>
AuthorDate: Wed Mar 18 19:55:14 2026 +0800

    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 <[email protected]>
---
 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

Reply via email to