diff options
author | Martin Roth <martinroth@google.com> | 2017-08-17 15:15:55 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-08-28 15:44:46 +0000 |
commit | 933ca5b9bc808fb15b6d9fe5c595d9bd1e0565fd (patch) | |
tree | 249ef592516c9759ce5f4d923abf036b75614142 /src/soc/amd/common/agesawrapper.h | |
parent | b233916f504cd28be9d4d5710328772ba4b28a5a (diff) | |
download | coreboot-933ca5b9bc808fb15b6d9fe5c595d9bd1e0565fd.tar.xz |
soc/amd: Standardize guards on header files
The guards in the header files were inconsistent. Some had no leading or
trailing underscores, some had one, some had both leading and trailing.
Change all to double leading & trailing underscores.
Change all comments to have a space before them instead of tabs
BUG=b:62235990
Test=Build Kahlee
Change-Id: I4466df529ab201c922096a31d7438381778b582f
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/21073
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marc Jones <marc@marcjonesconsulting.com>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd/common/agesawrapper.h')
-rw-r--r-- | src/soc/amd/common/agesawrapper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/common/agesawrapper.h b/src/soc/amd/common/agesawrapper.h index 97d52f7c10..b42f531352 100644 --- a/src/soc/amd/common/agesawrapper.h +++ b/src/soc/amd/common/agesawrapper.h @@ -13,8 +13,8 @@ * GNU General Public License for more details. */ -#ifndef _AGESAWRAPPER_H_ -#define _AGESAWRAPPER_H_ +#ifndef __AGESAWRAPPER_H__ +#define __AGESAWRAPPER_H__ #include <stdint.h> #include <Porting.h> @@ -56,4 +56,4 @@ const void *agesawrapper_locate_module(const CHAR8 name[8]); void OemPostParams(AMD_POST_PARAMS *PostParams); -#endif /* _AGESAWRAPPER_H_ */ +#endif /* __AGESAWRAPPER_H__ */ |