summaryrefslogtreecommitdiffstats
path: root/src/include/watchdog.h
diff options
context:
space:
mode:
authorPatrick Georgi <patrick@georgi-clan.de>2013-03-11 18:32:50 +0100
committerPatrick Georgi <patrick@georgi-clan.de>2013-03-12 12:06:43 +0100
commit5021209f5a94e862c6b2915e4e6993b4931364fe (patch)
treecf843aeebc63f71cbfdaca509922bfb1f63b9255 /src/include/watchdog.h
parentdb2e3aa2578a931924f5bd269b0279bd403263ea (diff)
downloadcoreboot-5021209f5a94e862c6b2915e4e6993b4931364fe.tar.gz
coreboot-5021209f5a94e862c6b2915e4e6993b4931364fe.tar.bz2
coreboot-5021209f5a94e862c6b2915e4e6993b4931364fe.zip
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@georgi-clan.de> Reviewed-on: http://review.coreboot.org/2627 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/include/watchdog.h')
-rw-r--r--src/include/watchdog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/watchdog.h b/src/include/watchdog.h
index d6267375f5c7..b94cd4dcd009 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 */