diff options
Diffstat (limited to 'src/shared/efi-loader.h')
-rw-r--r-- | src/shared/efi-loader.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/shared/efi-loader.h b/src/shared/efi-loader.h index 7d41fbb359..96208d25bf 100644 --- a/src/shared/efi-loader.h +++ b/src/shared/efi-loader.h @@ -5,9 +5,6 @@ #if ENABLE_EFI -bool is_efi_boot(void); -bool is_efi_secure_boot(void); -bool is_efi_secure_boot_setup_mode(void); int efi_reboot_to_firmware_supported(void); int efi_get_reboot_to_firmware(void); int efi_set_reboot_to_firmware(bool value); @@ -28,18 +25,6 @@ int efi_loader_get_features(uint64_t *ret); #else -static inline bool is_efi_boot(void) { - return false; -} - -static inline bool is_efi_secure_boot(void) { - return false; -} - -static inline bool is_efi_secure_boot_setup_mode(void) { - return false; -} - static inline int efi_reboot_to_firmware_supported(void) { return -EOPNOTSUPP; } |