mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
hw/sparc/leon3: Remove unused 'env' argument of write_bootloader()
'CPUSPARCState *env' argument is unused, remove it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20240215132824.67363-2-philmd@linaro.org>
This commit is contained in:
+2
-3
@@ -94,8 +94,7 @@ static uint32_t *gen_store_u32(uint32_t *code, hwaddr addr, uint32_t val)
|
||||
* state (eg: initialized by the bootloader). This little code reproduces
|
||||
* this behavior.
|
||||
*/
|
||||
static void write_bootloader(CPUSPARCState *env, uint8_t *base,
|
||||
hwaddr kernel_addr)
|
||||
static void write_bootloader(uint8_t *base, hwaddr kernel_addr)
|
||||
{
|
||||
uint32_t *p = (uint32_t *) base;
|
||||
|
||||
@@ -342,7 +341,7 @@ static void leon3_generic_hw_init(MachineState *machine)
|
||||
uint8_t *bootloader_entry;
|
||||
|
||||
bootloader_entry = memory_region_get_ram_ptr(prom);
|
||||
write_bootloader(env, bootloader_entry, entry);
|
||||
write_bootloader(bootloader_entry, entry);
|
||||
reset_info->entry = LEON3_PROM_OFFSET;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user