From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32948) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO7Om-000748-AV for qemu-devel@nongnu.org; Tue, 26 Jan 2016 12:27:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aO7Oh-0007nA-Bb for qemu-devel@nongnu.org; Tue, 26 Jan 2016 12:27:24 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55027) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aO7Oh-0007n4-7D for qemu-devel@nongnu.org; Tue, 26 Jan 2016 12:27:19 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id DDE80C0AEE4B for ; Tue, 26 Jan 2016 17:27:18 +0000 (UTC) References: <1453564933-29638-1-git-send-email-ehabkost@redhat.com> <20160126145946.GH4218@thinpad.lan.raisama.net> From: Laszlo Ersek Message-ID: <56A7AC74.2040409@redhat.com> Date: Tue, 26 Jan 2016 18:27:16 +0100 MIME-Version: 1.0 In-Reply-To: <20160126145946.GH4218@thinpad.lan.raisama.net> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 7/5] acpi: Remove unused acpi_table_add_builtin() function List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost , qemu-devel@nongnu.org Cc: Marcel Apfelbaum , "Michael S. Tsirkin" , Markus Armbruster , Paolo Bonzini , Igor Mammedov , John Snow On 01/26/16 15:59, Eduardo Habkost wrote: > Signed-off-by: Eduardo Habkost > --- > Additional code removal. > --- > hw/acpi/core.c | 10 +--------- > 1 file changed, 1 insertion(+), 9 deletions(-) > > diff --git a/hw/acpi/core.c b/hw/acpi/core.c > index 21e113d..c2a5383 100644 > --- a/hw/acpi/core.c > +++ b/hw/acpi/core.c > @@ -309,14 +309,6 @@ out: > error_propagate(errp, err); > } > > -static bool acpi_table_builtin = false; > - > -void acpi_table_add_builtin(const QemuOpts *opts, Error **errp) > -{ > - acpi_table_builtin = true; > - acpi_table_add(opts, errp); > -} > - > unsigned acpi_table_len(void *current) > { > struct acpi_table_header *hdr = current - sizeof(hdr->_length); > @@ -332,7 +324,7 @@ void *acpi_table_hdr(void *h) > > uint8_t *acpi_table_first(void) > { > - if (acpi_table_builtin || !acpi_tables) { > + if (!acpi_tables) { > return NULL; > } > return acpi_table_hdr(acpi_tables + ACPI_TABLE_PFX_SIZE); > Reviewed-by: Laszlo Ersek