smbios-stub.c (598cf1c805271564686f2d732b36f50c3c40dcdd) | smbios-stub.c (e688df6bc4549f28534cdb001f168b8caae55b0c) |
---|---|
1/* 2 * SMBIOS stubs for platforms that don't support SMBIOS. 3 * 4 * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp> 5 * VA Linux Systems Japan K.K. 6 * Copyright (c) 2016 Leif Lindholm <leif.lindholm@linaro.org> 7 * Linaro Ltd. 8 * --- 7 unchanged lines hidden (view full) --- 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * GNU General Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License along 20 * with this program; if not, see <http://www.gnu.org/licenses/>. 21 */ 22 23#include "qemu/osdep.h" | 1/* 2 * SMBIOS stubs for platforms that don't support SMBIOS. 3 * 4 * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp> 5 * VA Linux Systems Japan K.K. 6 * Copyright (c) 2016 Leif Lindholm <leif.lindholm@linaro.org> 7 * Linaro Ltd. 8 * --- 7 unchanged lines hidden (view full) --- 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * GNU General Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License along 20 * with this program; if not, see <http://www.gnu.org/licenses/>. 21 */ 22 23#include "qemu/osdep.h" |
24#include "qapi/error.h" |
|
24#include "qapi/qmp/qerror.h" 25#include "qmp-commands.h" 26#include "hw/smbios/smbios.h" 27 28void smbios_entry_add(QemuOpts *opts, Error **errp) 29{ 30 error_setg(errp, QERR_UNSUPPORTED); 31} | 25#include "qapi/qmp/qerror.h" 26#include "qmp-commands.h" 27#include "hw/smbios/smbios.h" 28 29void smbios_entry_add(QemuOpts *opts, Error **errp) 30{ 31 error_setg(errp, QERR_UNSUPPORTED); 32} |