m68k: fix broken buildman m68k
authorangelo@sysam.it <angelo@sysam.it>
Mon, 11 Apr 2016 22:30:59 +0000 (00:30 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 18 Apr 2016 21:11:41 +0000 (17:11 -0400)
fix 19/48 broken board compilations, due to a now too smal 16-bit
relative jump

Signed-off-by: Angelo Dureghello <angelo@sysam.it>
Acked-by: Marek Vasut <marex@denx.de>
Acked-by: Heiko Schocher <hs@denx.de>
arch/m68k/cpu/mcf523x/start.S
arch/m68k/cpu/mcf52x2/start.S
arch/m68k/cpu/mcf532x/start.S
arch/m68k/cpu/mcf5445x/start.S

index 8a23e72ede79afbcda1dab8e0df37ab7e3332461..1702f98ab1f11c97d7369a476da9722206e327c0 100644 (file)
@@ -141,8 +141,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 */
 
index 8a59496051a795b54819692b1c24005822eb5c73..4af691f5aff7f4ff49845b48463746e2c627044a 100644 (file)
@@ -198,8 +198,12 @@ _after_flashbar_copy:
 
        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 */
 
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 */
 
index ae261b11329526842e387efd75c6b23284d283f7..f50f147a4f3e6c4fb1722095998556519ff5e5a1 100644 (file)
@@ -664,8 +664,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 */