]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
ppmc7xx: Use _start as reset entry point
authorPeter Tyser <ptyser@xes-inc.com>
Wed, 15 Sep 2010 00:13:52 +0000 (19:13 -0500)
committerWolfgang Denk <wd@denx.de>
Tue, 12 Oct 2010 21:01:03 +0000 (23:01 +0200)
Previously the _warm_start label was used as an entry point.  These 2
entry points should be functionally identical after the removal of the
BOOTFLAG_WARM define.

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
board/ppmc7xx/ppmc7xx.c

index 0cad897349279d1582ed245e840f3849f762cc2c..5e7427f370f02f45bbf280a12927f6c719612e8b 100644 (file)
@@ -19,8 +19,7 @@
 
 
 /* Function prototypes */
-extern void unlock_ram_in_cache( void );
-extern void _start_warm(void);
+extern void _start(void);
 
 
 /*
@@ -97,8 +96,8 @@ void do_reset( cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[] )
        icache_disable();
        dcache_disable();
 
-       /* Jump to warm start (in RAM) */
-       _start_warm();
+       /* Jump to cold reset point (in RAM) */
+       _start();
 
        /* Should never get here */
        while(1);