diff options
Diffstat (limited to 'plat/socionext')
-rw-r--r-- | plat/socionext/synquacer/drivers/mhu/sq_mhu.h | 6 | ||||
-rw-r--r-- | plat/socionext/synquacer/drivers/scpi/sq_scpi.h | 6 | ||||
-rw-r--r-- | plat/socionext/synquacer/include/plat_macros.S | 7 | ||||
-rw-r--r-- | plat/socionext/synquacer/include/sq_common.h | 6 | ||||
-rw-r--r-- | plat/socionext/uniphier/include/plat_macros.S | 6 | ||||
-rw-r--r-- | plat/socionext/uniphier/uniphier.h | 6 |
6 files changed, 19 insertions, 18 deletions
diff --git a/plat/socionext/synquacer/drivers/mhu/sq_mhu.h b/plat/socionext/synquacer/drivers/mhu/sq_mhu.h index bef117d7f..f6b5cc37d 100644 --- a/plat/socionext/synquacer/drivers/mhu/sq_mhu.h +++ b/plat/socionext/synquacer/drivers/mhu/sq_mhu.h @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __SQ_MHU_H__ -#define __SQ_MHU_H__ +#ifndef SQ_MHU_H +#define SQ_MHU_H #include <stdint.h> @@ -16,4 +16,4 @@ void mhu_secure_message_end(unsigned int slot_id); void mhu_secure_init(void); -#endif /* __SQ_MHU_H__ */ +#endif /* SQ_MHU_H */ diff --git a/plat/socionext/synquacer/drivers/scpi/sq_scpi.h b/plat/socionext/synquacer/drivers/scpi/sq_scpi.h index 30fa5c72d..38cc19e5c 100644 --- a/plat/socionext/synquacer/drivers/scpi/sq_scpi.h +++ b/plat/socionext/synquacer/drivers/scpi/sq_scpi.h @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __SQ_SCPI_H__ -#define __SQ_SCPI_H__ +#ifndef SQ_SCPI_H +#define SQ_SCPI_H #include <stddef.h> #include <stdint.h> @@ -79,4 +79,4 @@ extern void scpi_set_sq_power_state(unsigned int mpidr, scpi_power_state_t css_state); uint32_t scpi_sys_power_state(scpi_system_state_t system_state); -#endif /* __SQ_SCPI_H__ */ +#endif /* SQ_SCPI_H */ diff --git a/plat/socionext/synquacer/include/plat_macros.S b/plat/socionext/synquacer/include/plat_macros.S index 3dc06aa98..932b21dd4 100644 --- a/plat/socionext/synquacer/include/plat_macros.S +++ b/plat/socionext/synquacer/include/plat_macros.S @@ -4,12 +4,13 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __PLAT_MACROS_S__ -#define __PLAT_MACROS_S__ +#ifndef PLAT_MACROS_S +#define PLAT_MACROS_S /* * Print CCN registers */ .macro plat_crash_print_regs .endm -#endif /* __PLAT_MACROS_S__ */ + +#endif /* PLAT_MACROS_S */ diff --git a/plat/socionext/synquacer/include/sq_common.h b/plat/socionext/synquacer/include/sq_common.h index 7f0633a5c..c39564034 100644 --- a/plat/socionext/synquacer/include/sq_common.h +++ b/plat/socionext/synquacer/include/sq_common.h @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __SQ_COMMON_H__ -#define __SQ_COMMON_H__ +#ifndef SQ_COMMON_H +#define SQ_COMMON_H #include <stdint.h> #include <xlat_tables_v2.h> @@ -40,4 +40,4 @@ void sq_gic_pcpu_init(void); void sq_mmap_setup(uintptr_t total_base, size_t total_size, const struct mmap_region *mmap); -#endif /* __SQ_COMMON_H__ */ +#endif /* SQ_COMMON_H */ diff --git a/plat/socionext/uniphier/include/plat_macros.S b/plat/socionext/uniphier/include/plat_macros.S index 6de4dde17..d6d2579d3 100644 --- a/plat/socionext/uniphier/include/plat_macros.S +++ b/plat/socionext/uniphier/include/plat_macros.S @@ -4,10 +4,10 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __PLAT_MACROS_S__ -#define __PLAT_MACROS_S__ +#ifndef PLAT_MACROS_S +#define PLAT_MACROS_S .macro plat_crash_print_regs .endm -#endif /* __PLAT_MACROS_S__ */ +#endif /* PLAT_MACROS_S */ diff --git a/plat/socionext/uniphier/uniphier.h b/plat/socionext/uniphier/uniphier.h index 89ed36287..648c2b94c 100644 --- a/plat/socionext/uniphier/uniphier.h +++ b/plat/socionext/uniphier/uniphier.h @@ -4,8 +4,8 @@ * SPDX-License-Identifier: BSD-3-Clause */ -#ifndef __UNIPHIER_H__ -#define __UNIPHIER_H__ +#ifndef UNIPHIER_H +#define UNIPHIER_H #include <stdint.h> #include <string.h> @@ -88,4 +88,4 @@ unsigned int uniphier_calc_core_pos(u_register_t mpidr); #define UNIPHIER_IMAGE_BUF_SIZE ((UNIPHIER_NS_DRAM_LIMIT) - \ (UNIPHIER_IMAGE_BUF_BASE)) -#endif /* __UNIPHIER_H__ */ +#endif /* UNIPHIER_H */ |