diff options
author | Eduardo Habkost | 2015-08-07 21:55:53 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2015-08-13 13:08:28 +0200 |
commit | df1f79fdbb98f948f0f9d77a5a48a643026ef31d (patch) | |
tree | 5c613a25e98b45c2c845b0696003602bf27f01be /include/hw/i386/pc.h | |
parent | pc: Use PCMachineState as pc_guest_info_init() argument (diff) | |
download | qemu-df1f79fdbb98f948f0f9d77a5a48a643026ef31d.tar.gz qemu-df1f79fdbb98f948f0f9d77a5a48a643026ef31d.tar.xz qemu-df1f79fdbb98f948f0f9d77a5a48a643026ef31d.zip |
pc: Remove redundant arguments from *load_linux()
Remove arguments that can be found in PCMachineState.
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/hw/i386/pc.h')
-rw-r--r-- | include/hw/i386/pc.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 94d7afb238..c43360207d 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -180,10 +180,7 @@ void pc_set_legacy_acpi_data_size(void); void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory, MemoryRegion *pci_address_space); -FWCfgState *xen_load_linux(const char *kernel_filename, - const char *kernel_cmdline, - const char *initrd_filename, - ram_addr_t below_4g_mem_size, +FWCfgState *xen_load_linux(PCMachineState *pcms, PcGuestInfo *guest_info); FWCfgState *pc_memory_init(PCMachineState *pcms, MemoryRegion *system_memory, |