diff options
| author | wdenk <wdenk> | 2005-06-05 20:30:43 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2005-06-05 20:30:43 +0000 | 
| commit | 51152c173d025551dce4e0097e14e147ad016d3b (patch) | |
| tree | d478bf34f99a269aff610ab7577411514f9c6545 /common/lcd.c | |
| parent | ba91e26a1923dfc703d4b96ae9428067b7447ff2 (diff) | |
| download | olio-uboot-2014.01-51152c173d025551dce4e0097e14e147ad016d3b.tar.xz olio-uboot-2014.01-51152c173d025551dce4e0097e14e147ad016d3b.zip | |
Fix watchdog reset problems on LWMON board
Diffstat (limited to 'common/lcd.c')
| -rw-r--r-- | common/lcd.c | 1 | 
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++); |