mips malta: fix commit 7064

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7079 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
aurel32 2009-04-11 07:02:25 +00:00
parent 52a0e9ebf1
commit 3930367245
1 changed files with 3 additions and 3 deletions

View File

@ -679,13 +679,13 @@ static void prom_set(int index, const char *string, ...)
}
table_addr = ENVP_ADDR + sizeof(int32_t) * ENVP_NB_ENTRIES
+ index * ENVP_ENTRY_SIZE + VIRT_TO_PHYS_ADDEND;
stl_raw(p, table_addr);
+ index * ENVP_ENTRY_SIZE;
stl_phys(p, table_addr);
va_start(ap, string);
vsnprintf(buf, ENVP_ENTRY_SIZE, string, ap);
va_end(ap);
pstrcpy_targphys(table_addr, ENVP_ENTRY_SIZE, buf);
pstrcpy_targphys(table_addr + VIRT_TO_PHYS_ADDEND, ENVP_ENTRY_SIZE, buf);
}
/* Kernel */