mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
hw/arm/virt: pass VirtMachineState instead of VirtGuestInfo
Only two functions take VirtGuestInfo parameters. Now that guest-info is part of VirtMachineState, and VirtMachineState is defined in the virt header, pass that instead. Signed-off-by: Andrew Jones <drjones@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Message-id: 20170102200153.28864-11-drjones@redhat.com Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
committed by
Peter Maydell
parent
a72d436387
commit
e9a8e474fb
@@ -1131,9 +1131,9 @@ static void *machvirt_dtb(const struct arm_boot_info *binfo, int *fdt_size)
|
||||
return board->fdt;
|
||||
}
|
||||
|
||||
static void virt_build_smbios(VirtGuestInfo *guest_info)
|
||||
static void virt_build_smbios(VirtMachineState *vms)
|
||||
{
|
||||
FWCfgState *fw_cfg = guest_info->fw_cfg;
|
||||
FWCfgState *fw_cfg = vms->acpi_guest_info.fw_cfg;
|
||||
uint8_t *smbios_tables, *smbios_anchor;
|
||||
size_t smbios_tables_len, smbios_anchor_len;
|
||||
const char *product = "QEMU Virtual Machine";
|
||||
@@ -1166,8 +1166,8 @@ void virt_machine_done(Notifier *notifier, void *data)
|
||||
VirtMachineState *vms = container_of(notifier, VirtMachineState,
|
||||
machine_done);
|
||||
|
||||
virt_acpi_setup(&vms->acpi_guest_info);
|
||||
virt_build_smbios(&vms->acpi_guest_info);
|
||||
virt_acpi_setup(vms);
|
||||
virt_build_smbios(vms);
|
||||
}
|
||||
|
||||
static void machvirt_init(MachineState *machine)
|
||||
|
||||
Reference in New Issue
Block a user