mirror of https://github.com/xemu-project/xemu.git
hw/i386/pc: Merge pc_guest_info_init() into pc_machine_initfn()
Resolves redundant code in the piix and q35 machines. Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20240208220349.4948-5-shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
6e6d59a94d
commit
4d3457fef9
|
@ -698,12 +698,6 @@ void pc_machine_done(Notifier *notifier, void *data)
|
|||
pc_cmos_init_late(pcms);
|
||||
}
|
||||
|
||||
void pc_guest_info_init(PCMachineState *pcms)
|
||||
{
|
||||
pcms->machine_done.notify = pc_machine_done;
|
||||
qemu_add_machine_init_done_notifier(&pcms->machine_done);
|
||||
}
|
||||
|
||||
/* setup pci memory address space mapping into system address space */
|
||||
void pc_pci_as_mapping_init(MemoryRegion *system_memory,
|
||||
MemoryRegion *pci_address_space)
|
||||
|
@ -1744,6 +1738,9 @@ static void pc_machine_initfn(Object *obj)
|
|||
object_property_add_alias(OBJECT(pcms), "pcspk-audiodev",
|
||||
OBJECT(pcms->pcspk), "audiodev");
|
||||
cxl_machine_init(obj, &pcms->cxl_devices_state);
|
||||
|
||||
pcms->machine_done.notify = pc_machine_done;
|
||||
qemu_add_machine_init_done_notifier(&pcms->machine_done);
|
||||
}
|
||||
|
||||
static void pc_machine_reset(MachineState *machine, ShutdownCause reason)
|
||||
|
|
|
@ -225,8 +225,6 @@ static void pc_init1(MachineState *machine,
|
|||
&error_abort);
|
||||
}
|
||||
|
||||
pc_guest_info_init(pcms);
|
||||
|
||||
if (pcmc->smbios_defaults) {
|
||||
MachineClass *mc = MACHINE_GET_CLASS(machine);
|
||||
/* These values are guest ABI, do not change */
|
||||
|
|
|
@ -188,8 +188,6 @@ static void pc_q35_init(MachineState *machine)
|
|||
kvmclock_create(pcmc->kvmclock_create_always);
|
||||
}
|
||||
|
||||
pc_guest_info_init(pcms);
|
||||
|
||||
if (pcmc->smbios_defaults) {
|
||||
/* These values are guest ABI, do not change */
|
||||
smbios_set_defaults("QEMU", mc->desc,
|
||||
|
|
|
@ -154,8 +154,6 @@ extern int fd_bootchk;
|
|||
|
||||
void pc_acpi_smi_interrupt(void *opaque, int irq, int level);
|
||||
|
||||
void pc_guest_info_init(PCMachineState *pcms);
|
||||
|
||||
#define PCI_HOST_PROP_RAM_MEM "ram-mem"
|
||||
#define PCI_HOST_PROP_PCI_MEM "pci-mem"
|
||||
#define PCI_HOST_PROP_SYSTEM_MEM "system-mem"
|
||||
|
|
Loading…
Reference in New Issue