diff options
author | Joel Kitching <kitching@google.com> | 2019-08-20 17:43:50 +0800 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2019-08-28 07:32:05 +0000 |
commit | 9adf2aa24307937380debb703ac07b8093a25f61 (patch) | |
tree | b95c5bbb5259714ef86c125894267d0476cd62fe /host/include | |
parent | a762fa782793e7b13ba13ceed474f20c54afbdd3 (diff) | |
download | vboot-9adf2aa24307937380debb703ac07b8093a25f61.tar.gz |
vboot: fix up some headers, includes, comments, spacing
BUG=b:124141368
TEST=make clean && make runtests
BRANCH=none
Change-Id: Id97f544da845f7070555e5e8cc6e782b2d45c300
Signed-off-by: Joel Kitching <kitching@google.com>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vboot_reference/+/1758151
Tested-by: Joel Kitching <kitching@chromium.org>
Reviewed-by: Joel Kitching <kitching@chromium.org>
Commit-Queue: Joel Kitching <kitching@chromium.org>
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/cgpt_params.h | 6 | ||||
-rw-r--r-- | host/include/crossystem.h | 2 | ||||
-rw-r--r-- | host/include/vboot_host.h | 7 |
3 files changed, 8 insertions, 7 deletions
diff --git a/host/include/cgpt_params.h b/host/include/cgpt_params.h index 955524d9..b17a0b48 100644 --- a/host/include/cgpt_params.h +++ b/host/include/cgpt_params.h @@ -3,8 +3,8 @@ * found in the LICENSE file. */ -#ifndef VBOOT_REFERENCE_CGPT_CGPT_PARAMS_H_ -#define VBOOT_REFERENCE_CGPT_CGPT_PARAMS_H_ +#ifndef VBOOT_REFERENCE_CGPT_PARAMS_H_ +#define VBOOT_REFERENCE_CGPT_PARAMS_H_ #include <stdint.h> @@ -139,4 +139,4 @@ typedef struct CgptLegacyParams { } #endif /* __cplusplus */ -#endif /* VBOOT_REFERENCE_CGPT_CGPT_PARAMS_H_ */ +#endif /* VBOOT_REFERENCE_CGPT_PARAMS_H_ */ diff --git a/host/include/crossystem.h b/host/include/crossystem.h index 42b1b040..63e9ec76 100644 --- a/host/include/crossystem.h +++ b/host/include/crossystem.h @@ -49,4 +49,4 @@ int VbSetSystemPropertyString(const char* name, const char* value); } #endif -#endif /* VBOOT_REFERENCE__CROSSYSTEM_H_ */ +#endif /* VBOOT_REFERENCE_CROSSYSTEM_H_ */ diff --git a/host/include/vboot_host.h b/host/include/vboot_host.h index a8ad3154..81c5434f 100644 --- a/host/include/vboot_host.h +++ b/host/include/vboot_host.h @@ -5,8 +5,9 @@ * vboot-related functions exported for use by userspace programs */ -#ifndef VBOOT_HOST_H_ -#define VBOOT_HOST_H_ +#ifndef VBOOT_REFERENCE_VBOOT_HOST_H_ +#define VBOOT_REFERENCE_VBOOT_HOST_H_ + #include <inttypes.h> #include <stdint.h> #include <stdlib.h> @@ -76,4 +77,4 @@ int ExtractVmlinuz(void *kpart_data, size_t kpart_size, } #endif /* __cplusplus */ -#endif /* VBOOT_HOST_H_ */ +#endif /* VBOOT_REFERENCE_VBOOT_HOST_H_ */ |