diff options
| author | Michael Brown | 2012-07-19 11:08:50 +0200 |
|---|---|---|
| committer | Michael Brown | 2012-07-19 14:15:24 +0200 |
| commit | 34576e5ff40756f362c61a409280619f45fb0bdb (patch) | |
| tree | 884c52f030284f2a48599304251c290947b329f4 /src/include/ipxe | |
| parent | [pxeprefix] Ignore errors from PXENV_FILE_CMDLINE (diff) | |
| download | ipxe-34576e5ff40756f362c61a409280619f45fb0bdb.tar.gz ipxe-34576e5ff40756f362c61a409280619f45fb0bdb.tar.xz ipxe-34576e5ff40756f362c61a409280619f45fb0bdb.zip | |
[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>
Diffstat (limited to 'src/include/ipxe')
| -rw-r--r-- | src/include/ipxe/efi/ipxe_download.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/ipxe/efi/ipxe_download.h b/src/include/ipxe/efi/ipxe_download.h index 282d1eedb..22e3cef08 100644 --- a/src/include/ipxe/efi/ipxe_download.h +++ b/src/include/ipxe/efi/ipxe_download.h @@ -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 */ |
