[coreboot] Patch set updated for coreboot: c7d8a6a watchdog.h: Fix compile time error on disabling watchdog handling

Paul Menzel (paulepanter@users.sourceforge.net) gerrit at coreboot.org
Mon Mar 11 23:43:10 CET 2013


Paul Menzel (paulepanter at users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2627

-gerrit

commit c7d8a6a65ccb61edfefe0dcef28697823b491eb7
Author: Patrick Georgi <patrick at georgi-clan.de>
Date:   Mon Mar 11 18:32:50 2013 +0100

    watchdog.h: Fix compile time error on disabling watchdog handling
    
    There's a compile time error that we didn't catch since the
    board defaults as used by the build bot won't expose it.
    
    Just make watchdog_off() a no-op statement so there aren't any
    stray semicolons in the preprocessor output.
    
    Change-Id: Ib5595e7e8aa91ca54bc8ca30a39b72875c961464
    Reported-by: 'lautriv' on irc.freenode.net/#coreboot
    Signed-off-by: Patrick Georgi <patrick at georgi-clan.de>
---
 src/include/watchdog.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/include/watchdog.h b/src/include/watchdog.h
index d626737..b94cd4d 100644
--- a/src/include/watchdog.h
+++ b/src/include/watchdog.h
@@ -4,7 +4,7 @@
 #if CONFIG_USE_WATCHDOG_ON_BOOT
 void watchdog_off(void);
 #else
-#define watchdog_off()
+#define watchdog_off() while(0) {}
 #endif
 
 #endif /* WATCHDOG_H */



More information about the coreboot mailing list