diff options
| author | Eduardo Habkost | 2015-08-07 21:55:49 +0200 |
|---|---|---|
| committer | Michael S. Tsirkin | 2015-08-13 13:08:27 +0200 |
| commit | 23d3040704e8e2a10f3e21e2c6594b3a8c7b20db (patch) | |
| tree | ee6721f62896cb9a809b58c07ab696d2f7aa53fa /include | |
| parent | pc: Eliminate pc_default_machine_options() (diff) | |
| download | qemu-23d3040704e8e2a10f3e21e2c6594b3a8c7b20db.tar.gz qemu-23d3040704e8e2a10f3e21e2c6594b3a8c7b20db.tar.xz qemu-23d3040704e8e2a10f3e21e2c6594b3a8c7b20db.zip | |
pc: Use PCMachineState for pc_cmos_init() argument
pc_cmos_init() already expects a PCMachineState object, there's no point
in upcasting it to MachineState before calling the function.
While doing it, reorder the arguments so PCMachineState is the first
function argument.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/hw/i386/pc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 0273becc95..d8184cd206 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -200,8 +200,9 @@ void pc_basic_device_init(ISABus *isa_bus, qemu_irq *gsi, bool no_vmport, uint32 hpet_irqs); void pc_init_ne2k_isa(ISABus *bus, NICInfo *nd); -void pc_cmos_init(ram_addr_t ram_size, ram_addr_t above_4g_mem_size, - const char *boot_device, MachineState *machine, +void pc_cmos_init(PCMachineState *pcms, + ram_addr_t ram_size, ram_addr_t above_4g_mem_size, + const char *boot_device, BusState *ide0, BusState *ide1, ISADevice *s); void pc_nic_init(ISABus *isa_bus, PCIBus *pci_bus); |
