[U-Boot] [PATCH 4/4] powerpc: Add LINK_OFF calls in early C-code.
Joakim Tjernlund
Joakim.Tjernlund at transmode.se
Mon Dec 20 10:47:15 CET 2010
Only these 2 call sites depends on fixups for my mpc8321 based
board.
Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund at transmode.se>
---
arch/powerpc/cpu/mpc83xx/cpu_init.c | 2 +-
arch/powerpc/lib/board.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/powerpc/cpu/mpc83xx/cpu_init.c b/arch/powerpc/cpu/mpc83xx/cpu_init.c
index 7a1cae7..88d9dd8 100644
--- a/arch/powerpc/cpu/mpc83xx/cpu_init.c
+++ b/arch/powerpc/cpu/mpc83xx/cpu_init.c
@@ -507,7 +507,7 @@ int prt_83xx_rsr(void)
sep = " ";
for (i = 0; i < n; i++)
if (rsr & bits[i].mask) {
- printf("%s%s", sep, bits[i].desc);
+ printf("%s%s", sep, LINK_OFF(bits[i].desc));
sep = ", ";
}
puts("\n");
diff --git a/arch/powerpc/lib/board.c b/arch/powerpc/lib/board.c
index 9759e23..4ffec36 100644
--- a/arch/powerpc/lib/board.c
+++ b/arch/powerpc/lib/board.c
@@ -386,7 +386,7 @@ void board_init_f (ulong bootflag)
#endif
for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
- if ((*init_fnc_ptr) () != 0) {
+ if ((LINK_OFF(*init_fnc_ptr)) () != 0) {
hang ();
}
}
--
1.7.2.2
More information about the U-Boot
mailing list