| 1 | /* |
| 2 | * Support for generating APEI tables and recording CPER for Guests: |
| 3 | * stub functions. |
| 4 | * |
| 5 | * Copyright (c) 2021 Linaro, Ltd |
| 6 | * |
| 7 | * This work is licensed under the terms of the GNU GPL, version 2 or later. |
| 8 | * See the COPYING file in the top-level directory. |
| 9 | */ |
| 10 | |
| 11 | #include "qemu/osdep.h" |
| 12 | #include "hw/acpi/ghes.h" |
| 13 | |
| 14 | bool acpi_ghes_memory_errors(AcpiGhesState *ags, uint16_t source_id, |
| 15 | uint64_t physical_address, Error **errp) |
| 16 | { |
| 17 | g_assert_not_reached(); |
| 18 | } |
| 19 | |
| 20 | AcpiGhesState *acpi_ghes_get_state(void) |
| 21 | { |
| 22 | return NULL; |
| 23 | } |