From: LeoLiuoc <LeoLiu-oc@xxxxxxxxxxx> Remove static from apei_hest_parse() so that it can be called in another file. Signed-off-by: LeoLiuoc <LeoLiu-oc@xxxxxxxxxxx> --- drivers/acpi/apei/hest.c | 2 +- include/acpi/apei.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/acpi/apei/hest.c b/drivers/acpi/apei/hest.c index 20d757687e3d..35d08f4e50e6 100644 --- a/drivers/acpi/apei/hest.c +++ b/drivers/acpi/apei/hest.c @@ -134,7 +134,7 @@ static bool is_ghes_assist_struct(struct acpi_hest_header *hest_hdr) typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data); -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; diff --git a/include/acpi/apei.h b/include/acpi/apei.h index dc60f7db5524..b79976daa4bb 100644 --- a/include/acpi/apei.h +++ b/include/acpi/apei.h @@ -33,6 +33,8 @@ void __init acpi_ghes_init(void); static inline void acpi_ghes_init(void) { } #endif +int apei_hest_parse(apei_hest_func_t func, void *data); + #ifdef CONFIG_ACPI_APEI void __init acpi_hest_init(void); #else -- 2.34.1