diff options
author | Heinrich Schuchardt | 2024-04-05 10:12:57 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2024-04-13 11:03:12 +0200 |
commit | b34ce3113babd3e6e56196431146a15c5bc6c92e (patch) | |
tree | 1c68f8b54390125ad2edb88f35d1bda3d8cbad4a /lib | |
parent | df1076af36f2377c89a9ebc29cda70a2e2812b9c (diff) |
efi_loader: eliminate duplicate runtime section definitions
The following symbols are defined in two includes:
* __efi_runtime_start[]
* __efi_runtime_stop[]
* __efi_runtime_rel_start[]
* __efi_runtime_rel_stop[]
Eliminate the definitions in efi_loader.h.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_memory.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_memory.c b/lib/efi_loader/efi_memory.c index aba3100c768..12cf23fa3fa 100644 --- a/lib/efi_loader/efi_memory.c +++ b/lib/efi_loader/efi_memory.c @@ -15,6 +15,7 @@ #include <watchdog.h> #include <asm/cache.h> #include <asm/global_data.h> +#include <asm/sections.h> #include <linux/list_sort.h> #include <linux/sizes.h> |