aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/block/include/amdblocks/psp.h
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2017-08-17 15:15:55 -0600
committerMartin Roth <martinroth@google.com>2017-08-28 15:44:46 +0000
commit933ca5b9bc808fb15b6d9fe5c595d9bd1e0565fd (patch)
tree249ef592516c9759ce5f4d923abf036b75614142 /src/soc/amd/common/block/include/amdblocks/psp.h
parentb233916f504cd28be9d4d5710328772ba4b28a5a (diff)
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/block/include/amdblocks/psp.h')
-rw-r--r--src/soc/amd/common/block/include/amdblocks/psp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/psp.h b/src/soc/amd/common/block/include/amdblocks/psp.h
index c70c0b1032..42b9fb7178 100644
--- a/src/soc/amd/common/block/include/amdblocks/psp.h
+++ b/src/soc/amd/common/block/include/amdblocks/psp.h
@@ -13,8 +13,8 @@
* GNU General Public License for more details.
*/
-#ifndef AMD_PSP_H
-#define AMD_PSP_H
+#ifndef __AMD_PSP_H__
+#define __AMD_PSP_H__
#include <stdint.h>
#include <compiler.h>
@@ -94,4 +94,4 @@ struct mbox_default_buffer { /* command-response buffer unused by command */
/* BIOS-to-PSP functions return 0 if successful, else negative value */
int psp_notify_dram(void);
-#endif /* AMD_PSP_H */
+#endif /* __AMD_PSP_H__ */