diff mbox series

[RFC,7/8] watchdog: Further cleanup

Message ID 20220829062313.32654-8-sr@denx.de
State RFC
Delegated to: Stefan Roese
Headers show
Series Migrate watchdog reset to cyclic infrastructure | expand

Commit Message

Stefan Roese Aug. 29, 2022, 6:23 a.m. UTC
Remove some now unused macros and #ifdef's.

Signed-off-by: Stefan Roese <sr@denx.de>
---
 include/watchdog.h | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

Comments

Simon Glass Aug. 30, 2022, 2:31 a.m. UTC | #1
On Mon, 29 Aug 2022 at 00:23, Stefan Roese <sr@denx.de> wrote:
>
> Remove some now unused macros and #ifdef's.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> ---
>  include/watchdog.h | 6 ++----
>  1 file changed, 2 insertions(+), 4 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/include/watchdog.h b/include/watchdog.h
index 91506d3327a8..ac5f11e376fa 100644
--- a/include/watchdog.h
+++ b/include/watchdog.h
@@ -10,7 +10,6 @@ 
 #ifndef _WATCHDOG_H_
 #define _WATCHDOG_H_
 
-#if !defined(__ASSEMBLY__)
 #include <cyclic.h>
 
 /*
@@ -20,7 +19,6 @@ 
  * and the legacy arch/<arch>/board.c code.
  */
 int init_func_watchdog_reset(void);
-#endif
 
 #if defined(CONFIG_WATCHDOG) || defined(CONFIG_HW_WATCHDOG)
 #define INIT_FUNC_WATCHDOG_INIT	init_func_watchdog_init,
@@ -38,11 +36,11 @@  int init_func_watchdog_reset(void);
  * Prototypes from $(CPU)/cpu.c.
  */
 
-#if (defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)) && !defined(__ASSEMBLY__)
+#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
 	void hw_watchdog_init(void);
 #endif
 
-#if defined(CONFIG_MPC85xx) && !defined(__ASSEMBLY__)
+#if defined(CONFIG_MPC85xx)
 	void init_85xx_watchdog(void);
 #endif
 #endif /* _WATCHDOG_H_ */