diff options
author | Eric DeVolder <eric.devolder@oracle.com> | 2022-01-28 15:38:06 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2022-02-06 04:33:50 -0500 |
commit | 8486f12f0b1e74217cc2769b6e2f38826b5a5444 (patch) | |
tree | 11c2fb2cbcfd3795fb874fb06a54fd21e4f9c3fd /include/hw/acpi | |
parent | c9cd06ca00acd142c3249594b041d7c84409e536 (diff) |
ACPI ERST: create ACPI ERST table for pc/x86 machines
This change exposes ACPI ERST support for x86 guests.
Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
Reviewed-by: Ani Sinha <ani@anisinha.ca>
Message-Id: <1643402289-22216-8-git-send-email-eric.devolder@oracle.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw/acpi')
-rw-r--r-- | include/hw/acpi/erst.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/hw/acpi/erst.h b/include/hw/acpi/erst.h index 9d637179fe..b747fe7739 100644 --- a/include/hw/acpi/erst.h +++ b/include/hw/acpi/erst.h @@ -16,4 +16,9 @@ void build_erst(GArray *table_data, BIOSLinker *linker, Object *erst_dev, #define TYPE_ACPI_ERST "acpi-erst" +/* returns NULL unless there is exactly one device */ +static inline Object *find_erst_dev(void) +{ + return object_resolve_path_type("", TYPE_ACPI_ERST, NULL); +} #endif |