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 249f57061cSPaolo Bonzini void acpi_table_add(const QemuOpts *opts, Error **errp) 259f57061cSPaolo Bonzini { 26588c13fcSMarkus Armbruster g_assert_not_reached(); 279f57061cSPaolo Bonzini } 28*e6ffea40SPhilippe Mathieu-Daudé 29*e6ffea40SPhilippe Mathieu-Daudé bool acpi_builtin(void) 30*e6ffea40SPhilippe Mathieu-Daudé { 31*e6ffea40SPhilippe Mathieu-Daudé return false; 32*e6ffea40SPhilippe Mathieu-Daudé } 33