1*fb1c8f89SEric DeVolder /* 2*fb1c8f89SEric DeVolder * ACPI Error Record Serialization Table, ERST, Implementation 3*fb1c8f89SEric DeVolder * 4*fb1c8f89SEric DeVolder * ACPI ERST introduced in ACPI 4.0, June 16, 2009. 5*fb1c8f89SEric DeVolder * ACPI Platform Error Interfaces : Error Serialization 6*fb1c8f89SEric DeVolder * 7*fb1c8f89SEric DeVolder * Copyright (c) 2021 Oracle and/or its affiliates. 8*fb1c8f89SEric DeVolder * 9*fb1c8f89SEric DeVolder * SPDX-License-Identifier: GPL-2.0-or-later 10*fb1c8f89SEric DeVolder */ 11*fb1c8f89SEric DeVolder #ifndef HW_ACPI_ERST_H 12*fb1c8f89SEric DeVolder #define HW_ACPI_ERST_H 13*fb1c8f89SEric DeVolder 14*fb1c8f89SEric DeVolder void build_erst(GArray *table_data, BIOSLinker *linker, Object *erst_dev, 15*fb1c8f89SEric DeVolder const char *oem_id, const char *oem_table_id); 16*fb1c8f89SEric DeVolder 17*fb1c8f89SEric DeVolder #define TYPE_ACPI_ERST "acpi-erst" 18*fb1c8f89SEric DeVolder 19*fb1c8f89SEric DeVolder #endif 20