shared: boot-timestamps - remove ifdef

No need to ifdef out efi code as the functions are always defined.
This commit is contained in:
Tom Gundersen 2015-04-10 19:49:36 +02:00
parent b28ce7c6db
commit 2e036c4eae

View file

@ -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;
}