diff options
author | Tom Gundersen <teg@jklm.no> | 2015-04-10 19:49:36 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-04-10 19:55:49 +0200 |
commit | 2e036c4eae2ed43b1f98124660680e9577f0ffef (patch) | |
tree | 0690cdd3be66d5acbf63fb63211791eda3ee51b6 /src | |
parent | b28ce7c6dbe341d6f5769d31014ab8411257db7d (diff) |
shared: boot-timestamps - remove ifdef
No need to ifdef out efi code as the functions are always defined.
Diffstat (limited to 'src')
-rw-r--r-- | src/shared/boot-timestamps.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/shared/boot-timestamps.c b/src/shared/boot-timestamps.c index 68419595fb..ecbe1aaa0f 100644 --- a/src/shared/boot-timestamps.c +++ b/src/shared/boot-timestamps.c @@ -39,10 +39,8 @@ int boot_timestamps(const dual_timestamp *n, dual_timestamp *firmware, dual_time r = acpi_get_boot_usec(&x, &y); if (r < 0) { -#ifdef ENABLE_EFI r = efi_loader_get_boot_usec(&x, &y); if (r < 0) -#endif return r; } |