aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware/efi/libstub/efistub.h
diff options
context:
space:
mode:
authorArd Biesheuvel <ardb@kernel.org>2020-11-02 11:51:10 +0100
committerArd Biesheuvel <ardb@kernel.org>2021-01-19 17:57:15 +0100
commit3820749ddcee694abfd5ae6cabc18aaab11eab34 (patch)
treef4412915f8629640728c22a76672e2245866fd3e /drivers/firmware/efi/libstub/efistub.h
parentefi/libstub: fix prototype of efi_tcg2_protocol::get_event_log() (diff)
downloadlinux-dev-3820749ddcee694abfd5ae6cabc18aaab11eab34.tar.xz
linux-dev-3820749ddcee694abfd5ae6cabc18aaab11eab34.zip
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 'drivers/firmware/efi/libstub/efistub.h')
-rw-r--r--drivers/firmware/efi/libstub/efistub.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/firmware/efi/libstub/efistub.h b/drivers/firmware/efi/libstub/efistub.h
index 2b7438ba1fbc..cde0a2ef507d 100644
--- a/drivers/firmware/efi/libstub/efistub.h
+++ b/drivers/firmware/efi/libstub/efistub.h
@@ -849,4 +849,13 @@ void efi_handle_post_ebs_state(void);
enum efi_secureboot_mode efi_get_secureboot(void);
+#ifdef CONFIG_RESET_ATTACK_MITIGATION
+void efi_enable_reset_attack_mitigation(void);
+#else
+static inline void
+efi_enable_reset_attack_mitigation(void) { }
+#endif
+
+void efi_retrieve_tpm2_eventlog(void);
+
#endif