aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorwdenk <wdenk>2005-06-05 20:30:43 +0000
committerwdenk <wdenk>2005-06-05 20:30:43 +0000
commit51152c173d025551dce4e0097e14e147ad016d3b (patch)
treed478bf34f99a269aff610ab7577411514f9c6545 /common
parentba91e26a1923dfc703d4b96ae9428067b7447ff2 (diff)
Fix watchdog reset problems on LWMON board
Diffstat (limited to 'common')
-rw-r--r--common/lcd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/lcd.c b/common/lcd.c
index 9713ea308..66506381a 100644
--- a/common/lcd.c
+++ b/common/lcd.c
@@ -655,6 +655,7 @@ int lcd_display_bitmap(ulong bmp_image, int x, int y)
fb = (uchar *) (lcd_base +
(y + height - 1) * lcd_line_length + x);
for (i = 0; i < height; ++i) {
+ WATCHDOG_RESET();
for (j = 0; j < width ; j++)
#if defined(CONFIG_PXA250)
*(fb++)=*(bmap++);