mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00

Generic code in target/arm wants to call acpi_ghes_record_errors(); provide a stub version so that we don't fail to link when CONFIG_ACPI_APEI is not set. This requires us to add a new ghes-stub.c file to contain it and the meson.build mechanics to use it when appropriate. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Dongjiu Geng <gengdongjiu1@gmail.com> Message-id: 20210603171259.27962-2-peter.maydell@linaro.org
17 lines
409 B
C
17 lines
409 B
C
/*
|
|
* Support for generating APEI tables and recording CPER for Guests:
|
|
* stub functions.
|
|
*
|
|
* Copyright (c) 2021 Linaro, Ltd
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/acpi/ghes.h"
|
|
|
|
int acpi_ghes_record_errors(uint8_t source_id, uint64_t physical_address)
|
|
{
|
|
return -1;
|
|
}
|