summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/include/ipxe/efi/efi_watchdog.h
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/roms/ipxe/src/include/ipxe/efi/efi_watchdog.h')
-rw-r--r--qemu/roms/ipxe/src/include/ipxe/efi/efi_watchdog.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/qemu/roms/ipxe/src/include/ipxe/efi/efi_watchdog.h b/qemu/roms/ipxe/src/include/ipxe/efi/efi_watchdog.h
deleted file mode 100644
index 4a56b9a29..000000000
--- a/qemu/roms/ipxe/src/include/ipxe/efi/efi_watchdog.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef _IPXE_EFI_WATCHDOG_H
-#define _IPXE_EFI_WATCHDOG_H
-
-/** @file
- *
- * EFI watchdog holdoff timer
- */
-
-FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
-
-extern struct retry_timer efi_watchdog;
-
-/**
- * Start EFI watchdog holdoff timer
- *
- */
-static inline void efi_watchdog_start ( void ) {
-
- start_timer_nodelay ( &efi_watchdog );
-}
-
-/**
- * Stop EFI watchdog holdoff timer
- *
- */
-static inline void efi_watchdog_stop ( void ) {
-
- stop_timer ( &efi_watchdog );
-}
-
-#endif /* _IPXE_EFI_WATCHDOG_H */