diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2020-11-02 11:51:10 +0100 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2021-01-19 17:57:15 +0100 |
commit | 3820749ddcee694abfd5ae6cabc18aaab11eab34 (patch) | |
tree | f4412915f8629640728c22a76672e2245866fd3e /include/linux | |
parent | cdec91c034a2c99331b62a5f417bf7527fa6d490 (diff) |
efi/libstub: move TPM related prototypes into efistub.h
Move TPM related definitions that are only used in the EFI stub into
efistub.h, which is a local header.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/efi.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/efi.h b/include/linux/efi.h index 2537a246c2d6..8710f5710c1d 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h @@ -1104,13 +1104,6 @@ enum efi_secureboot_mode efi_get_secureboot_mode(efi_get_variable_t *get_var) return efi_secureboot_mode_enabled; } -#ifdef CONFIG_RESET_ATTACK_MITIGATION -void efi_enable_reset_attack_mitigation(void); -#else -static inline void -efi_enable_reset_attack_mitigation(void) { } -#endif - #ifdef CONFIG_EFI_EMBEDDED_FIRMWARE void efi_check_for_embedded_firmwares(void); #else @@ -1119,8 +1112,6 @@ static inline void efi_check_for_embedded_firmwares(void) { } efi_status_t efi_random_get_seed(void); -void efi_retrieve_tpm2_eventlog(void); - /* * Arch code can implement the following three template macros, avoiding * reptition for the void/non-void return cases of {__,}efi_call_virt(): |