diff options
author | Wei Yang <richardw.yang@linux.intel.com> | 2019-02-14 16:49:37 +0800 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-03-06 10:22:03 +0100 |
commit | 49e5ef07d71efeeaab3be65e034d34a2189d36ff (patch) | |
tree | 7a2b15a7625c99ad393ee3e641b9f21f29be9f8f /hw | |
parent | 9a92aa3b176407ccc7e433ecf2a653433cde1851 (diff) |
hw/i386/pc.c: remove unused function pc_acpi_init()
Function pc_acpi_init() is not used anymore.
Remove the definition and declaration.
Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20190214084939.20640-2-richardw.yang@linux.intel.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/pc.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 3889eccdc3..578f772e7c 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -1688,33 +1688,6 @@ void pc_pci_as_mapping_init(Object *owner, MemoryRegion *system_memory, pci_address_space, -1); } -void pc_acpi_init(const char *default_dsdt) -{ - char *filename; - - if (acpi_tables != NULL) { - /* manually set via -acpitable, leave it alone */ - return; - } - - filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, default_dsdt); - if (filename == NULL) { - warn_report("failed to find %s", default_dsdt); - } else { - QemuOpts *opts = qemu_opts_create(qemu_find_opts("acpi"), NULL, 0, - &error_abort); - Error *err = NULL; - - qemu_opt_set(opts, "file", filename, &error_abort); - - acpi_table_add_builtin(opts, &err); - if (err) { - warn_reportf_err(err, "failed to load %s: ", filename); - } - g_free(filename); - } -} - void xen_load_linux(PCMachineState *pcms) { int i; |