]> git.dujemihanovic.xyz Git - u-boot.git/commit
efi_loader: access __efi_runtime_start/stop without &
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Thu, 4 Apr 2024 06:35:35 +0000 (09:35 +0300)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 8 Apr 2024 11:05:42 +0000 (13:05 +0200)
commitc16248464f93be2254f32f67aaa24c7aa821136a
tree61e81cd36731ae9a1a8aaffa06726a3474f94c9d
parent92f4cb6f9ac36242826186593fddec3c53ef1dbe
efi_loader: access __efi_runtime_start/stop without &

A symbol defined in a linker script (e.g. __efi_runtime_start = .;) is
only a symbol, not a variable and should not be dereferenced.
The common practice is either define it as
extern uint32_t __efi_runtime_start or
extern char __efi_runtime_start[] and access it as
&__efi_runtime_start or __efi_runtime_start respectively.

So let's access it properly since we define it as an array

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
lib/efi_loader/efi_memory.c