xref: /qemu/hw/acpi/acpi-stub.c (revision 4c33c097f3a8a8093bcbaf097c3a178051e51b3e)
19f57061cSPaolo Bonzini /*
29f57061cSPaolo Bonzini  * ACPI stubs for platforms that don't support ACPI.
39f57061cSPaolo Bonzini  *
49f57061cSPaolo Bonzini  * Copyright (c) 2006 Fabrice Bellard
59f57061cSPaolo Bonzini  * Copyright (c) 2016 Red Hat, Inc.
69f57061cSPaolo Bonzini  *
79f57061cSPaolo Bonzini  * This program is free software; you can redistribute it and/or modify
89f57061cSPaolo Bonzini  * it under the terms of the GNU General Public License as published by
99f57061cSPaolo Bonzini  * the Free Software Foundation; either version 2 of the License, or
109f57061cSPaolo Bonzini  * (at your option) any later version.
119f57061cSPaolo Bonzini  *
129f57061cSPaolo Bonzini  * This program is distributed in the hope that it will be useful,
139f57061cSPaolo Bonzini  * but WITHOUT ANY WARRANTY; without even the implied warranty of
149f57061cSPaolo Bonzini  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
159f57061cSPaolo Bonzini  * GNU General Public License for more details.
169f57061cSPaolo Bonzini  *
179f57061cSPaolo Bonzini  * You should have received a copy of the GNU General Public License along
189f57061cSPaolo Bonzini  * with this program; if not, see <http://www.gnu.org/licenses/>.
199f57061cSPaolo Bonzini  */
209f57061cSPaolo Bonzini 
219f57061cSPaolo Bonzini #include "qemu/osdep.h"
229f57061cSPaolo Bonzini #include "hw/acpi/acpi.h"
239f57061cSPaolo Bonzini 
24*bb99b92aSPhilippe Mathieu-Daudé char unsigned *acpi_tables;
25*bb99b92aSPhilippe Mathieu-Daudé size_t acpi_tables_len;
26*bb99b92aSPhilippe Mathieu-Daudé 
acpi_table_add(const QemuOpts * opts,Error ** errp)279f57061cSPaolo Bonzini void acpi_table_add(const QemuOpts *opts, Error **errp)
289f57061cSPaolo Bonzini {
29588c13fcSMarkus Armbruster     g_assert_not_reached();
309f57061cSPaolo Bonzini }
31e6ffea40SPhilippe Mathieu-Daudé 
acpi_builtin(void)32e6ffea40SPhilippe Mathieu-Daudé bool acpi_builtin(void)
33e6ffea40SPhilippe Mathieu-Daudé {
34e6ffea40SPhilippe Mathieu-Daudé     return false;
35e6ffea40SPhilippe Mathieu-Daudé }
36