tree-wide: use '#pragma once' for header guard

Follow-up for a2b635eb39 (#9959).
This commit is contained in:
Yu Watanabe 2018-08-30 03:38:28 +09:00 committed by Evgeny Vereshchagin
parent eaaec6cc12
commit 7a3c343cb8
14 changed files with 14 additions and 59 deletions

View File

@ -2,8 +2,7 @@
// MurmurHash2 was written by Austin Appleby, and is placed in the public
// domain. The author hereby disclaims copyright to this source code.
#ifndef _MURMURHASH2_H_
#define _MURMURHASH2_H_
#pragma once
//-----------------------------------------------------------------------------
// Platform-specific functions and macros
@ -29,5 +28,3 @@ typedef unsigned __int64 uint64_t;
uint32_t MurmurHash2 ( const void * key, int len, uint32_t seed );
//-----------------------------------------------------------------------------
#endif // _MURMURHASH2_H_

View File

@ -1,5 +1,4 @@
#ifndef _LINUX_SECUREBITS_H
#define _LINUX_SECUREBITS_H 1
#pragma once
/* This is minimal version of Linux' linux/securebits.h header file,
* which is licensed GPL2 */
@ -41,5 +40,3 @@
issecure_mask(SECURE_NO_SETUID_FIXUP) | \
issecure_mask(SECURE_KEEP_CAPS))
#define SECURE_ALL_LOCKS (SECURE_ALL_BITS << 1)
#endif /* !_LINUX_SECUREBITS_H */

View File

@ -20,8 +20,7 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifndef SPARSE_ENDIAN_H
#define SPARSE_ENDIAN_H
#pragma once
#include <byteswap.h>
#include <endian.h>
@ -89,5 +88,3 @@ static inline uint64_t be64toh(be64_t value) { return bswap_64_on_le((uint64_t _
#undef __sd_bitwise
#undef __sd_force
#endif /* SPARSE_ENDIAN_H */

View File

@ -1,7 +1,5 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __SDBOOT_CONSOLE_H
#define __SDBOOT_CONSOLE_H
#pragma once
#define EFI_SHIFT_STATE_VALID 0x80000000
#define EFI_RIGHT_CONTROL_PRESSED 0x00000004
@ -24,4 +22,3 @@ enum console_mode_change_type {
EFI_STATUS console_key_read(UINT64 *key, BOOLEAN wait);
EFI_STATUS console_set_mode(UINTN *mode, enum console_mode_change_type how);
#endif

View File

@ -1,7 +1,4 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __SDBOOT_DISK_H
#define __SDBOOT_DISK_H
#pragma once
EFI_STATUS disk_get_part_uuid(EFI_HANDLE *handle, CHAR16 uuid[37]);
#endif

View File

@ -3,9 +3,6 @@
* Copyright © 2013 Intel Corporation
* Authored by Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
*/
#ifndef __SDBOOT_GRAPHICS_H
#define __SDBOOT_GRAPHICS_H
#pragma once
EFI_STATUS graphics_mode(BOOLEAN on);
#endif

View File

@ -1,10 +1,7 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __SDBOOT_kernel_H
#define __SDBOOT_kernel_H
#pragma once
EFI_STATUS linux_exec(EFI_HANDLE *image,
CHAR8 *cmdline, UINTN cmdline_size,
UINTN linux_addr,
UINTN initrd_addr, UINTN initrd_size, BOOLEAN secure);
#endif

View File

@ -1,7 +1,4 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __SDBOOT_MEASURE_H
#define __SDBOOT_MEASURE_H
#pragma once
EFI_STATUS tpm_log_event(UINT32 pcrindex, const EFI_PHYSICAL_ADDRESS buffer, UINTN buffer_size, const CHAR16 *description);
#endif

View File

@ -1,10 +1,7 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __SDBOOT_PEFILE_H
#define __SDBOOT_PEFILE_H
#pragma once
EFI_STATUS pe_memory_locate_sections(CHAR8 *base,
CHAR8 **sections, UINTN *addrs, UINTN *offsets, UINTN *sizes);
EFI_STATUS pe_file_locate_sections(EFI_FILE *dir, CHAR16 *path,
CHAR8 **sections, UINTN *addrs, UINTN *offsets, UINTN *sizes);
#endif

View File

@ -7,9 +7,7 @@
* Copyright © 2012 <James.Bottomley@HansenPartnership.com>
* https://github.com/mjg59/efitools
*/
#ifndef __SDBOOT_SHIM_H
#define __SDBOOT_SHIM_H
#pragma once
BOOLEAN shim_loaded(void);
@ -18,5 +16,3 @@ BOOLEAN secure_boot_enabled(void);
EFI_STATUS security_policy_install(void);
EFI_STATUS security_policy_uninstall(void);
#endif

View File

@ -1,7 +1,4 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __SDBOOT_SPLASH_H
#define __SDBOOT_SPLASH_H
#pragma once
EFI_STATUS graphics_splash(UINT8 *content, UINTN len, const EFI_GRAPHICS_OUTPUT_BLT_PIXEL *background);
#endif

View File

@ -1,7 +1,5 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __SDBOOT_UTIL_H
#define __SDBOOT_UTIL_H
#pragma once
#include <efi.h>
#include <efilib.h>
@ -39,5 +37,3 @@ static inline void FreePoolp(void *p) {
#define _cleanup_(x) __attribute__((cleanup(x)))
#define _cleanup_freepool_ _cleanup_(FreePoolp)
#endif

View File

@ -1,7 +1,5 @@
/* SPDX-License-Identifier: LGPL-2.1+ */
#ifndef __fsprgh__
#define __fsprgh__
#pragma once
/*
* fsprg v0.1 - (seekable) forward-secure pseudorandom generator
@ -62,5 +60,3 @@ void FSPRG_GetKey(const void *state, void *key, size_t keylen, uint32_t idx);
#ifdef __cplusplus
}
#endif
#endif

View File

@ -11,8 +11,7 @@
* Version: @(#)initreq.h 1.28 31-Mar-2004 MvS
*/
#ifndef _INITREQ_H
#define _INITREQ_H
#pragma once
#include <sys/param.h>
@ -72,5 +71,3 @@ struct init_request {
char data[368];
} i;
};
#endif