diff --git a/plat/nvidia/tegra/soc/t194/drivers/include/mce_private.h b/plat/nvidia/tegra/soc/t194/drivers/include/mce_private.h index 7dcfd84be96b2b63a1c11f57c95267e9676b9879..226ab5bc510a046571059b5436b8ed7f738374e5 100644 --- a/plat/nvidia/tegra/soc/t194/drivers/include/mce_private.h +++ b/plat/nvidia/tegra/soc/t194/drivers/include/mce_private.h @@ -1,11 +1,11 @@ /* - * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __MCE_PRIVATE_H__ -#define __MCE_PRIVATE_H__ +#ifndef MCE_PRIVATE_H +#define MCE_PRIVATE_H #include @@ -71,4 +71,4 @@ void nvg_enable_strict_checking_mode(void); /* MCE helper functions */ void mce_enable_strict_checking(void); -#endif /* __MCE_PRIVATE_H__ */ +#endif /* MCE_PRIVATE_H */ diff --git a/plat/nvidia/tegra/soc/t194/drivers/include/se.h b/plat/nvidia/tegra/soc/t194/drivers/include/se.h index 6e656f677513264a30a129f9011dfe8b12e8e0a6..e7cf88d05de01ba6013d7883c05f52a159525114 100644 --- a/plat/nvidia/tegra/soc/t194/drivers/include/se.h +++ b/plat/nvidia/tegra/soc/t194/drivers/include/se.h @@ -1,13 +1,13 @@ /* - * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __SE_H__ -#define __SE_H__ +#ifndef SE_H +#define SE_H int32_t tegra_se_suspend(void); void tegra_se_resume(void); -#endif /* __SE_H__ */ +#endif /* SE_H */ diff --git a/plat/nvidia/tegra/soc/t194/drivers/se/se_private.h b/plat/nvidia/tegra/soc/t194/drivers/se/se_private.h index f5c00456a13a8ede8787ca0e4cd0913e0e8b6151..a2c5d1c38130f7d5087e70c17ba24fefd42fb078 100644 --- a/plat/nvidia/tegra/soc/t194/drivers/se/se_private.h +++ b/plat/nvidia/tegra/soc/t194/drivers/se/se_private.h @@ -1,12 +1,12 @@ /* * Copyright (c) 2020, ARM Limited and Contributors. All rights reserved. - * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __SE_PRIVATE_H__ -#define __SE_PRIVATE_H__ +#ifndef SE_PRIVATE_H +#define SE_PRIVATE_H #include @@ -82,4 +82,4 @@ static inline void tegra_se_write_32(uint32_t offset, uint32_t val) mmio_write_32(TEGRA_SE0_BASE + offset, val); } -#endif /* __SE_PRIVATE_H__ */ +#endif /* SE_PRIVATE_H */