From: Heinrich Schuchardt Date: Wed, 18 Oct 2017 16:13:07 +0000 (+0200) Subject: efi_loader: guard against double inclusion of efi_loader.h X-Git-Tag: v2018.01-rc2~58^2~65 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd9e18dee0d148a326aafcc075b0b9d247ffdaa2;p=platform%2Fkernel%2Fu-boot.git efi_loader: guard against double inclusion of efi_loader.h Use a define to detect double inclusion of efi_loader.h. Signed-off-by: Heinrich Schuchardt Signed-off-by: Alexander Graf --- diff --git a/include/efi_loader.h b/include/efi_loader.h index af64b11..e506eee 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -6,6 +6,9 @@ * SPDX-License-Identifier: GPL-2.0+ */ +#ifndef _EFI_LOADER_H +#define _EFI_LOADER_H 1 + #include #include #include @@ -345,4 +348,6 @@ static inline void efi_set_bootdev(const char *dev, const char *devnr, const char *path) { } static inline void efi_net_set_dhcp_ack(void *pkt, int len) { } -#endif +#endif /* CONFIG_EFI_LOADER && !CONFIG_SPL_BUILD */ + +#endif /* _EFI_LOADER_H */