Browse Source

[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>
tags/v1.20.1
Michael Brown 11 years ago
parent
commit
34576e5ff4
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      src/include/ipxe/efi/ipxe_download.h

+ 4
- 4
src/include/ipxe/efi/ipxe_download.h View File

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

Loading…
Cancel
Save