@@ -131,7 +131,7 @@ static bool hest_match_pci(struct acpi_hest_header *hest_hdr,
return false;
}
-static int apei_hest_parse(apei_hest_func_t func, void *data)
+int apei_hest_parse(apei_hest_func_t func, void *data)
{
struct acpi_hest_header *hest_hdr;
int i, rc, len;
@@ -37,9 +37,11 @@ typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
#ifdef CONFIG_ACPI_APEI
void __init acpi_hest_init(void);
+int apei_hest_parse(apei_hest_func_t func, void *data);
int apei_hest_parse_aer(struct acpi_hest_header *hest_hdr, void *data);
#else
static inline void acpi_hest_init(void) { }
+static inline int apei_hest_parse(apei_hest_func_t func, void *data) { return -EINVAL; }
static inline int apei_hest_parse_aer(struct acpi_hest_header *hest_hdr, void *data)
{
return -EINVAL;