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:
Philippe Mathieu-Daudé 2024-02-15 14:23:16 +01:00
parent c90e6e3708
commit a7b3c3797e

View File

@ -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;
}
}