diff options
Diffstat (limited to 'hw/mips_malta.c')
-rw-r--r-- | hw/mips_malta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c index b26bbeeefa..30fa6b8edb 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -679,7 +679,7 @@ static void prom_set(int index, const char *string, ...) va_start(ap, string); vsnprintf(buf, ENVP_ENTRY_SIZE, string, ap); va_end(ap); - pstrcpy_targphys(table_addr + VIRT_TO_PHYS_ADDEND, ENVP_ENTRY_SIZE, buf); + pstrcpy_targphys("prom", table_addr + VIRT_TO_PHYS_ADDEND, ENVP_ENTRY_SIZE, buf); } /* Kernel */ |