]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - arch/m68k/cpu/mcf532x/start.S
m68k: fix broken buildman m68k
[karo-tx-uboot.git] / arch / m68k / cpu / mcf532x / start.S
index 3b9ede0d3d49a1df9408e5ae6fa9b4530691d2d0..131ad6e392e9c48fabe730f46baf97222951528e 100644 (file)
@@ -155,8 +155,12 @@ _start:
 
        move.l #__got_start, %a5        /* put relocation table address to a5 */
 
-       bsr cpu_init_f                  /* run low-level CPU init code (from flash) */
-       bsr board_init_f                /* run low-level board init code (from flash) */
+       /* run low-level CPU init code (from flash) */
+       move.l #cpu_init_f, %a1
+       jsr (%a1)
+       /* run low-level board init code (from flash) */
+       move.l #board_init_f, %a1
+       jsr (%a1)
 
        /* board_init_f() does not return */