[U-Boot] [PATCH 1/1] Fix bug in jumptable call stubs for SPARC.

Daniel Hellstrom daniel at gaisler.com
Wed Sep 23 15:22:28 CEST 2009


From: Sergey Mironov <ierton at gmail.com>

Hello Wolfgang,

Sergey has resent the patch with a sign-off and I have updated the 
u-boot-sparc.git repository with the new patch, for SPARC standalone
application support.

Thank you,
Daniel Hellstrom



Signed-off-by: Sergey Mironov <ierton at gmail.com>
Signed-off-by: Daniel Hellstrom <daniel at gaisler.com>
---
 examples/standalone/stubs.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/standalone/stubs.c b/examples/standalone/stubs.c
index 339bbf9..ce3371d 100644
--- a/examples/standalone/stubs.c
+++ b/examples/standalone/stubs.c
@@ -181,9 +181,9 @@ gd_t *global_data;
 "	or %%g1, %%g7, %%g1\n"				\
 "	ld [%%g1], %%g1\n"				\
 "	ld [%%g1 + %1], %%g1\n"				\
-"	call %%g1\n"					\
+"	jmp %%g1\n"					\
 "	nop\n"						\
-	: : "i"(offsetof(gd_t, jt)), "i"(XF_ ## x) : "g1" );
+	: : "i"(offsetof(gd_t, jt)), "i"(XF_ ## x * sizeof(void *)) : "g1" );
 
 #else
 #error stubs definition missing for this architecture
-- 
1.5.4


More information about the U-Boot mailing list