diff options
author | Michael Brown | 2016-10-16 18:04:30 +0200 |
---|---|---|
committer | Michael Brown | 2016-10-16 18:08:02 +0200 |
commit | 54dcfed3759c53526c10744e3d7cf095db0ffcaa (patch) | |
tree | 6d7961b9172600afbdd8fbebf492c2d59bd2131c /src/include | |
parent | [crypto] Mark permanent certificates as permanent (diff) | |
download | ipxe-54dcfed3759c53526c10744e3d7cf095db0ffcaa.tar.gz ipxe-54dcfed3759c53526c10744e3d7cf095db0ffcaa.tar.xz ipxe-54dcfed3759c53526c10744e3d7cf095db0ffcaa.zip |
[efi] Mark AppleNetBoot.h as a native iPXE header
AppleNetBoot.h is not taken from the EDK2 codebase and so cannot be
imported using include/ipxe/efi/import.pl. Mark as a native iPXE
header (by changing the include guard) to avoid breaking the import
process.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ipxe/efi/Protocol/AppleNetBoot.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/ipxe/efi/Protocol/AppleNetBoot.h b/src/include/ipxe/efi/Protocol/AppleNetBoot.h index 144beff1..5946524f 100644 --- a/src/include/ipxe/efi/Protocol/AppleNetBoot.h +++ b/src/include/ipxe/efi/Protocol/AppleNetBoot.h @@ -1,5 +1,5 @@ -#ifndef __EFI_APPLE_NET_BOOT_PROTOCOL_H__ -#define __EFI_APPLE_NET_BOOT_PROTOCOL_H__ +#ifndef _IPXE_EFI_APPLE_NET_BOOT_PROTOCOL_H +#define _IPXE_EFI_APPLE_NET_BOOT_PROTOCOL_H /** @file * @@ -43,4 +43,4 @@ struct _EFI_APPLE_NET_BOOT_PROTOCOL GET_DHCP_RESPONSE GetBsdpResponse; }; -#endif /*__EFI_APPLE_NET_BOOT_PROTOCOL_H__ */ +#endif /*_IPXE_EFI_APPLE_NET_BOOT_PROTOCOL_H */ |