diff options
author | Tom Rini <trini@konsulko.com> | 2018-08-21 13:15:21 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-08-21 13:15:21 -0400 |
commit | 26699998e9f4adb8c0ac8b36a2c3089fa8f05283 (patch) | |
tree | ed77d69574a9ff67aa7a8ff6bb7de03306900005 /include/efi_loader.h | |
parent | b71d9e8b3805305ea4116733f515061710ad7081 (diff) | |
parent | dbb148b22cbf242156edf53cca6d661cd320cb83 (diff) |
Merge tag 'signed-efi-2018.09' of git://github.com/agraf/u-boot
Patch queue for efi - 2018-08-21
A few fixes for 2018.09. Most noticable are:
- unbreak x86 target (-fdata-section fallout)
- fix undefined behavior in a few corner cases
- make Jetson TX1 boot again
- RTS fixes
- implement reset for simple output
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 57ca550272..f162adfff7 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -417,6 +417,9 @@ static inline int guidcmp(const efi_guid_t *g1, const efi_guid_t *g2) #define __efi_runtime_data __attribute__ ((section (".data.efi_runtime"))) #define __efi_runtime __attribute__ ((section (".text.efi_runtime"))) +/* Update CRC32 in table header */ +void __efi_runtime efi_update_table_header_crc32(struct efi_table_hdr *table); + /* Call this with mmio_ptr as the _pointer_ to a pointer to an MMIO region * to make it available at runtime */ efi_status_t efi_add_runtime_mmio(void *mmio_ptr, u64 len); |