From: Sascha Laue Date: Tue, 1 Apr 2008 13:13:03 +0000 (+0200) Subject: Fix watchdog POST for lwmon5 X-Git-Tag: v1.3.3-rc2~12^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7;p=u-boot Fix watchdog POST for lwmon5 If the hardware watchdog detects a voltage error, the watchdog sets GPIO62 to low. The watchdog POST has to detect this low level. Signed-off-by: Sascha Laue Signed-off-by: Wolfgang Denk --- diff --git a/post/board/lwmon5/watchdog.c b/post/board/lwmon5/watchdog.c index 16c01bee43..1246278a58 100644 --- a/post/board/lwmon5/watchdog.c +++ b/post/board/lwmon5/watchdog.c @@ -52,8 +52,9 @@ static void watchdog_magic_write(uint value) int sysmon1_post_test(int flags) { - if (gpio_read_in_bit(CFG_GPIO_SYSMON_STATUS)) { - /* 3.1. GPIO62 is low + if (gpio_read_in_bit(CFG_GPIO_SYSMON_STATUS) == 0) { + /* + * 3.1. GPIO62 is low * Assuming system voltage failure. */ post_log("Abnormal voltage detected (GPIO62)\n");