1*9f57061cSPaolo Bonzini /* 2*9f57061cSPaolo Bonzini * ACPI stubs for platforms that don't support ACPI. 3*9f57061cSPaolo Bonzini * 4*9f57061cSPaolo Bonzini * Copyright (c) 2006 Fabrice Bellard 5*9f57061cSPaolo Bonzini * Copyright (c) 2016 Red Hat, Inc. 6*9f57061cSPaolo Bonzini * 7*9f57061cSPaolo Bonzini * This program is free software; you can redistribute it and/or modify 8*9f57061cSPaolo Bonzini * it under the terms of the GNU General Public License as published by 9*9f57061cSPaolo Bonzini * the Free Software Foundation; either version 2 of the License, or 10*9f57061cSPaolo Bonzini * (at your option) any later version. 11*9f57061cSPaolo Bonzini * 12*9f57061cSPaolo Bonzini * This program is distributed in the hope that it will be useful, 13*9f57061cSPaolo Bonzini * but WITHOUT ANY WARRANTY; without even the implied warranty of 14*9f57061cSPaolo Bonzini * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15*9f57061cSPaolo Bonzini * GNU General Public License for more details. 16*9f57061cSPaolo Bonzini * 17*9f57061cSPaolo Bonzini * You should have received a copy of the GNU General Public License along 18*9f57061cSPaolo Bonzini * with this program; if not, see <http://www.gnu.org/licenses/>. 19*9f57061cSPaolo Bonzini */ 20*9f57061cSPaolo Bonzini 21*9f57061cSPaolo Bonzini #include "qemu/osdep.h" 22*9f57061cSPaolo Bonzini #include "qapi/qmp/qerror.h" 23*9f57061cSPaolo Bonzini #include "qmp-commands.h" 24*9f57061cSPaolo Bonzini #include "hw/acpi/acpi.h" 25*9f57061cSPaolo Bonzini 26*9f57061cSPaolo Bonzini void acpi_table_add(const QemuOpts *opts, Error **errp) 27*9f57061cSPaolo Bonzini { 28*9f57061cSPaolo Bonzini error_setg(errp, QERR_UNSUPPORTED); 29*9f57061cSPaolo Bonzini } 30