diff options
author | Stefan Reinauer <stepan@openbios.org> | 2006-05-04 10:08:04 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2006-05-04 10:08:04 +0000 |
commit | ab4f5d0c10b23021608eaec56836a7d063837f3f (patch) | |
tree | ccfea21609a30daded72f2e6ef416c006a70664f /src/cpu/amd | |
parent | 7ac38a33f630112bc2b4caa35162a540afaa2d09 (diff) |
fix the tree
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2296 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd')
-rw-r--r-- | src/cpu/amd/car/copy_and_run.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/cpu/amd/car/copy_and_run.c b/src/cpu/amd/car/copy_and_run.c index b81297c149..76b8a8b847 100644 --- a/src/cpu/amd/car/copy_and_run.c +++ b/src/cpu/amd/car/copy_and_run.c @@ -38,17 +38,15 @@ static void copy_and_run(void) #else __asm__ volatile ( - "leal _liseg, %0\n\t" - "leal _iseg, %1\n\t" + "leal _liseg, %0\n\t" + "leal _iseg, %1\n\t" : "=a" (src) , "=b" (dst) ); print_debug_cp_run("src=",(uint32_t)src); print_debug_cp_run("dst=",(uint32_t)dst); - olen = unrv2b(src, dst, &ilen); - print_debug_cp_run("linxbios_ram.nrv2b length = ", ilen); - + olen = unrv2b(src, dst); #endif print_debug_cp_run("linxbios_ram.bin length = ", olen); |