Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
U-Boot
Custodians
RISC-V U-Boot Custodian Tree
Commits
51152c17
Commit
51152c17
authored
Jun 05, 2005
by
wdenk
Browse files
Fix watchdog reset problems on LWMON board
parent
ba91e26a
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
51152c17
...
...
@@ -2,6 +2,8 @@
Changes for U-Boot 1.1.3:
======================================================================
* Fix watchdog reset problems on LWMON board
* Patch by Juergen Selent, 17 May 2005:
Add support for Funkwerk VoVPN gateway module.
...
...
common/lcd.c
View file @
51152c17
...
...
@@ -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
++
);
...
...
post/cpu.c
View file @
51152c17
...
...
@@ -120,6 +120,7 @@ int cpu_post_test (int flags)
WATCHDOG_RESET
();
if
(
ret
==
0
)
ret
=
cpu_post_test_multi
();
WATCHDOG_RESET
();
if
(
ret
==
0
)
ret
=
cpu_post_test_string
();
if
(
ret
==
0
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment