From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52926) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gokxa-0003d9-WD for qemu-devel@nongnu.org; Wed, 30 Jan 2019 03:11:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gokxZ-0005EQ-0j for qemu-devel@nongnu.org; Wed, 30 Jan 2019 03:11:02 -0500 Date: Wed, 30 Jan 2019 09:10:47 +0100 From: Igor Mammedov Message-ID: <20190130091047.135d5e3c@Igors-MacBook-Pro.local> In-Reply-To: <20190130000653.16267-2-richardw.yang@linux.intel.com> References: <20190130000653.16267-1-richardw.yang@linux.intel.com> <20190130000653.16267-2-richardw.yang@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3 1/3] hw/i386/pc.c: remove unused function pc_acpi_init() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Wei Yang Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org, mst@redhat.com, laurent@vivier.eu, philmd@redhat.com On Wed, 30 Jan 2019 08:06:51 +0800 Wei Yang wrote: > Function pc_acpi_init() is not used anymore. >=20 > Remove the definition and declaration. >=20 > Signed-off-by: Wei Yang > Reviewed-by: Philippe Mathieu-Daud=E8=8C=85 > Tested-by: Philippe Mathieu-Daud=E8=8C=85 Reviewed-by: Igor Mammedov > --- > hw/i386/pc.c | 27 --------------------------- > include/hw/i386/pc.h | 1 - > 2 files changed, 28 deletions(-) >=20 > diff --git a/hw/i386/pc.c b/hw/i386/pc.c > index 5317e08f60..734d3268fa 100644 > --- a/hw/i386/pc.c > +++ b/hw/i386/pc.c > @@ -1280,33 +1280,6 @@ void pc_pci_as_mapping_init(Object *owner, MemoryR= egion *system_memory, > pci_address_space, -1); > } > =20 > -void pc_acpi_init(const char *default_dsdt) > -{ > - char *filename; > - > - if (acpi_tables !=3D NULL) { > - /* manually set via -acpitable, leave it alone */ > - return; > - } > - > - filename =3D qemu_find_file(QEMU_FILE_TYPE_BIOS, default_dsdt); > - if (filename =3D=3D NULL) { > - warn_report("failed to find %s", default_dsdt); > - } else { > - QemuOpts *opts =3D qemu_opts_create(qemu_find_opts("acpi"), NULL= , 0, > - &error_abort); > - Error *err =3D 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; > diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h > index 9d29c4b1df..541124ba6d 100644 > --- a/include/hw/i386/pc.h > +++ b/include/hw/i386/pc.h > @@ -187,7 +187,6 @@ void pc_acpi_smi_interrupt(void *opaque, int irq, int= level); > =20 > void pc_cpus_init(PCMachineState *pcms); > void pc_hot_add_cpu(const int64_t id, Error **errp); > -void pc_acpi_init(const char *default_dsdt); > =20 > void pc_guest_info_init(PCMachineState *pcms); > =20