X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fwatchdog.h;h=3a357de903f1449dbfd51be3ede273673bbf78bd;hb=b4ee6daad7a2604ca9466b2ba48de86cc27d381f;hp=a3a2eeaf1b1e9fa76b348b058ec1123d46bfc336;hpb=907208c452999427cb2f43450308045bf8b42958;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/watchdog.h b/include/watchdog.h index a3a2eea..3a357de 100644 --- a/include/watchdog.h +++ b/include/watchdog.h @@ -1,8 +1,7 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2001 * Erik Theisen, Wave 7 Optics, etheisen@mindspring.com. - * - * SPDX-License-Identifier: GPL-2.0+ */ /* @@ -52,9 +51,15 @@ int init_func_watchdog_reset(void); #if defined(__ASSEMBLY__) #define WATCHDOG_RESET bl watchdog_reset #else - extern void watchdog_reset(void); + /* Don't require the watchdog to be enabled in SPL */ + #if defined(CONFIG_SPL_BUILD) && \ + !defined(CONFIG_SPL_WATCHDOG_SUPPORT) + #define WATCHDOG_RESET() {} + #else + extern void watchdog_reset(void); - #define WATCHDOG_RESET watchdog_reset + #define WATCHDOG_RESET watchdog_reset + #endif #endif #else /* @@ -72,11 +77,6 @@ int init_func_watchdog_reset(void); * Prototypes from $(CPU)/cpu.c. */ -/* MPC 8xx */ -#if defined(CONFIG_8xx) && !defined(__ASSEMBLY__) - void reset_8xx_watchdog(volatile immap_t *immr); -#endif - #if defined(CONFIG_HW_WATCHDOG) && !defined(__ASSEMBLY__) void hw_watchdog_init(void); #endif