]> git.sur5r.net Git - u-boot/blobdiff - arch/mips/lib/board.c
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
[u-boot] / arch / mips / lib / board.c
index f3171241556a9e3ae59eb3b4058d1379cfa00146..623c4d7f0d58a2ee0018c3dbecfdf2ed07c51e04 100644 (file)
@@ -162,9 +162,6 @@ void board_init_f(ulong bootflag)
        init_fnc_t **init_fnc_ptr;
        ulong addr, addr_sp, len = (ulong)&uboot_end - CONFIG_SYS_MONITOR_BASE;
        ulong *s;
-#ifdef CONFIG_PURPLE
-       void copy_code (ulong);
-#endif
 
        /* Pointer is writable since we allocated a register for it.
         */
@@ -253,13 +250,6 @@ void board_init_f(ulong bootflag)
 
        memcpy (id, (void *)gd, sizeof (gd_t));
 
-       /* On the purple board we copy the code in a special way
-        * in order to solve flash problems
-        */
-#ifdef CONFIG_PURPLE
-       copy_code(addr);
-#endif
-
        relocate_code (addr_sp, id, addr);
 
        /* NOTREACHED - relocate_code() does not return */