Skip to content

Commit

Permalink
hw/i386/pc: Merge pc_guest_info_init() into pc_machine_initfn()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
shentok authored and philmd committed Feb 21, 2024
1 parent 0fa0f10 commit 034dbea
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
9 changes: 3 additions & 6 deletions hw/i386/pc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 0 additions & 2 deletions hw/i386/pc_piix.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
2 changes: 0 additions & 2 deletions hw/i386/pc_q35.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 0 additions & 2 deletions include/hw/i386/pc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 034dbea

Please sign in to comment.