diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-11-09 09:23:02 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-12-13 18:39:05 -0500 |
commit | c659ac7cca151be29712f37fc77dd18fb4ab96c5 (patch) | |
tree | 2aa632ee3da4811abc1d1b4edc0978a5f4560cf5 /drivers/misc/qfw.c | |
parent | a4bee0b45504397d71302cd1b186f5651424a332 (diff) |
acpi: move acpi_get_rsdp_addr() to acpi/acpi_table.h
Function acpi_get_rsdp_addr() is needed on all architectures which
write ACPI tables. Move the definition from the x86 include to an
architecture independent one.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/misc/qfw.c')
-rw-r--r-- | drivers/misc/qfw.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/qfw.c b/drivers/misc/qfw.c index 7c01bf23d53..e3b6b4cd741 100644 --- a/drivers/misc/qfw.c +++ b/drivers/misc/qfw.c @@ -7,6 +7,7 @@ #define LOG_CATEGORY UCLASS_QFW #include <common.h> +#include <acpi/acpi_table.h> #include <bootdev.h> #include <bootflow.h> #include <bootmeth.h> |