From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53760) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVy9M-00044V-N4 for qemu-devel@nongnu.org; Tue, 15 Oct 2013 02:30:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VVy9G-0005yi-PP for qemu-devel@nongnu.org; Tue, 15 Oct 2013 02:30:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19171) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VVy9G-0005yU-Eq for qemu-devel@nongnu.org; Tue, 15 Oct 2013 02:30:30 -0400 Date: Tue, 15 Oct 2013 09:33:00 +0300 From: "Michael S. Tsirkin" Message-ID: <1381818560-18367-37-git-send-email-mst@redhat.com> References: <1381818560-18367-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1381818560-18367-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v2 36/39] pc: use new api to add builtin tables List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, Anthony Liguori Cc: peter.maydell@linaro.org, imammedo@redhat.com, mst@redhat.com, kraxel@redhat.com, marcel.a@redhat.com At this point the only builtin table we have is the DSDT used for Q35. Signed-off-by: Michael S. Tsirkin --- hw/i386/pc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/i386/pc.c b/hw/i386/pc.c index d17d1d9..f8a3f0b 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -1114,7 +1114,7 @@ void pc_acpi_init(const char *default_dsdt) opts = qemu_opts_parse(qemu_find_opts("acpi"), arg, 0); g_assert(opts != NULL); - acpi_table_add(opts, &err); + acpi_table_add_builtin(opts, &err); if (err) { error_report("WARNING: failed to load %s: %s", filename, error_get_pretty(err)); -- MST