Skip to content
Snippets Groups Projects
Commit db28ddb4 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix CONFIG_SKIP_LOWLEVEL_INIT dependency in cpu/arm920t/start.S

Patch by Peter Menzebach, 13 Oct 2005 [DNX#2006040142000473]
parent 534ff676
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
Changes since U-Boot 1.1.4: Changes since U-Boot 1.1.4:
====================================================================== ======================================================================
* Fix CONFIG_SKIP_LOWLEVEL_INIT dependency in cpu/arm920t/start.S
Patch by Peter Menzebach, 13 Oct 2005 [DNX#2006040142000473]
* Add support for ymodem protocol download * Add support for ymodem protocol download
Patch by Stefano Babic, 29 Mar 2006 Patch by Stefano Babic, 29 Mar 2006
......
...@@ -237,6 +237,7 @@ _start_armboot: .word start_armboot ...@@ -237,6 +237,7 @@ _start_armboot: .word start_armboot
*/ */
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
cpu_init_crit: cpu_init_crit:
/* /*
* flush v4 I/D caches * flush v4 I/D caches
...@@ -264,7 +265,7 @@ cpu_init_crit: ...@@ -264,7 +265,7 @@ cpu_init_crit:
bl lowlevel_init bl lowlevel_init
mov lr, ip mov lr, ip
mov pc, lr mov pc, lr
#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
/* /*
************************************************************************* *************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment