2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-25 19:08:35 +00:00

[efi] Standardise #include guard in ipxe_download.h

The script include/ipxe/efi/import.pl relies on a particular format
for the #include guard in order to detect EFI headers that are not
imported.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2012-07-19 10:08:50 +01:00
parent 9200049c80
commit 34576e5ff4

View File

@ -1,3 +1,6 @@
#ifndef _IPXE_DOWNLOAD_H
#define _IPXE_DOWNLOAD_H
/*
* Copyright (C) 2010 VMware, Inc. All Rights Reserved.
*
@ -16,9 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef IPXE_DOWNLOAD_H
#define IPXE_DOWNLOAD_H
FILE_LICENCE ( GPL2_OR_LATER );
/** @file
@ -151,4 +151,4 @@ struct _IPXE_DOWNLOAD_PROTOCOL {
0x3eaeaebd, 0xdecf, 0x493b, { 0x9b, 0xd1, 0xcd, 0xb2, 0xde, 0xca, 0xe7, 0x19 } \
}
#endif
#endif /* _IPXE_DOWNLOAD_H */