mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
efi_loader: Fix efi_add_runtime_mmio definition
The efi_add_runtime_mmio prototype for disabled CONFIG_EFI_LOADER was different from the enabled one. Sync them. Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
441a2306ab
commit
97d014446c
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ void efi_get_time_init(void);
|
|||
/* Without CONFIG_EFI_LOADER we don't have a runtime section, stub it out */
|
||||
#define __efi_runtime_data
|
||||
#define __efi_runtime
|
||||
static inline void efi_add_runtime_mmio(void **mmio_ptr, u64 len) { }
|
||||
static inline void efi_add_runtime_mmio(void *mmio_ptr, u64 len) { }
|
||||
|
||||
/* No loader configured, stub out EFI_ENTRY */
|
||||
static inline void efi_restore_gd(void) { }
|
||||
|
|
Loading…
Reference in a new issue