]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[efi] Standardise #include guard in ipxe_download.h
authorMichael Brown <mcb30@ipxe.org>
Thu, 19 Jul 2012 09:08:50 +0000 (10:08 +0100)
committerMichael Brown <mcb30@ipxe.org>
Thu, 19 Jul 2012 12:15:24 +0000 (13:15 +0100)
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>
src/include/ipxe/efi/ipxe_download.h

index 282d1eedb7670b57ff0e69b8f0c8ef83c09058fb..22e3cef0808425a8df0b2dc1927eb0dbf2012773 100644 (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 */