diff options
| author | Simon Glass <[email protected]> | 2018-06-11 23:26:40 -0600 |
|---|---|---|
| committer | Alexander Graf <[email protected]> | 2018-06-14 10:52:14 +0200 |
| commit | 2d2b5b2d007769ba48fd31223997df1d6b662c78 (patch) | |
| tree | 8a10a860efdefda4fc676e93f84a1f9d34ec6eaf /lib | |
| parent | e4679489c3fc12f87ce64347d2cebd5090ca9619 (diff) | |
efi: Add a comment about duplicated ELF constants
These constants are defined in arch-specific code but redefined here. Add
a TODO to clean this up.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/efi_loader/efi_runtime.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_runtime.c b/lib/efi_loader/efi_runtime.c index 65f2bcf1401..4874eb602f7 100644 --- a/lib/efi_loader/efi_runtime.c +++ b/lib/efi_loader/efi_runtime.c @@ -28,6 +28,10 @@ static efi_status_t __efi_runtime EFIAPI efi_unimplemented(void); static efi_status_t __efi_runtime EFIAPI efi_device_error(void); static efi_status_t __efi_runtime EFIAPI efi_invalid_parameter(void); +/* + * TODO([email protected]): These defines and structs should come from the elf + * header for each arch (or a generic header) rather than being repeated here. + */ #if defined(CONFIG_ARM64) #define R_RELATIVE 1027 #define R_MASK 0xffffffffULL |
