From: Cristian Rodríguez Date: Tue, 11 Feb 2014 12:54:49 +0000 (-0300) Subject: efi: fix Undefined reference efi_loader_get_boot_usec when EFI support is disabled X-Git-Tag: v209~185 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=70d9b9fc0a4fa1698ff00e364c61bb875244efa1;p=platform%2Fupstream%2Fsystemd.git efi: fix Undefined reference efi_loader_get_boot_usec when EFI support is disabled --- diff --git a/src/shared/boot-timestamps.c b/src/shared/boot-timestamps.c index 9449965..d656685 100644 --- a/src/shared/boot-timestamps.c +++ b/src/shared/boot-timestamps.c @@ -40,8 +40,10 @@ 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; }