diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2021-06-03 18:12:57 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2021-06-21 16:49:37 +0100 |
| commit | 82faef92fb149b6bad699c3275473fda6fd486b6 (patch) | |
| tree | 8e68943e124097eed22edef122401c378ced0dbe /hw/acpi/ghes-stub.c | |
| parent | 53f306f316549d20c76886903181413d20842423 (diff) | |
| download | focaccia-qemu-82faef92fb149b6bad699c3275473fda6fd486b6.tar.gz focaccia-qemu-82faef92fb149b6bad699c3275473fda6fd486b6.zip | |
hw/acpi: Provide stub version of acpi_ghes_record_errors()
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
Diffstat (limited to 'hw/acpi/ghes-stub.c')
| -rw-r--r-- | hw/acpi/ghes-stub.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/hw/acpi/ghes-stub.c b/hw/acpi/ghes-stub.c new file mode 100644 index 0000000000..9faba043b8 --- /dev/null +++ b/hw/acpi/ghes-stub.c @@ -0,0 +1,17 @@ +/* + * 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; +} |