diff --git a/arch/arc/soc/em7d/arc_mpu_regions.c b/arch/arc/soc/em7d/arc_mpu_regions.c index 1e854ab41d9..5853a253361 100644 --- a/arch/arc/soc/em7d/arc_mpu_regions.c +++ b/arch/arc/soc/em7d/arc_mpu_regions.c @@ -4,8 +4,8 @@ * SPDX-License-Identifier: Apache-2.0 */ - #include - #include +#include +#include static struct arc_mpu_region mpu_regions[] = { #if CONFIG_ICCM_SIZE > 0 diff --git a/arch/arm/soc/arm/beetle/arm_mpu_regions.c b/arch/arm/soc/arm/beetle/arm_mpu_regions.c index 7417c76bcbd..c5cedc69fb3 100644 --- a/arch/arm/soc/arm/beetle/arm_mpu_regions.c +++ b/arch/arm/soc/arm/beetle/arm_mpu_regions.c @@ -4,8 +4,8 @@ * SPDX-License-Identifier: Apache-2.0 */ - #include - #include +#include +#include static struct arm_mpu_region mpu_regions[] = { /* Region 0 */ diff --git a/arch/arm/soc/arm/beetle/soc.c b/arch/arm/soc/arm/beetle/soc.c index d725257ebdd..38e5faf21fd 100644 --- a/arch/arm/soc/arm/beetle/soc.c +++ b/arch/arm/soc/arm/beetle/soc.c @@ -12,12 +12,12 @@ * for the ARM LTD Beetle SoC. */ - #include - #include - #include - #include +#include +#include +#include +#include - #include +#include /** * @brief Perform basic hardware initialization at boot. diff --git a/arch/arm/soc/atmel_sam/sam3x/soc.h b/arch/arm/soc/atmel_sam/sam3x/soc.h index ede47633065..6d1e03d1f59 100644 --- a/arch/arm/soc/atmel_sam/sam3x/soc.h +++ b/arch/arm/soc/atmel_sam/sam3x/soc.h @@ -22,17 +22,17 @@ #define DONT_USE_PREDEFINED_PERIPHERALS_HANDLERS #if defined CONFIG_SOC_PART_NUMBER_SAM3X4C - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAM3X4E - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAM3X8C - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAM3X8E - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAM3X8H - #include +#include #else - #error Library does not support the specified device. +#error Library does not support the specified device. #endif #define ID_UART0 ID_UART diff --git a/arch/arm/soc/atmel_sam/sam4s/soc.h b/arch/arm/soc/atmel_sam/sam4s/soc.h index d1835255681..f5b52c38407 100644 --- a/arch/arm/soc/atmel_sam/sam4s/soc.h +++ b/arch/arm/soc/atmel_sam/sam4s/soc.h @@ -20,9 +20,9 @@ #define DONT_USE_PREDEFINED_PERIPHERALS_HANDLERS #if defined(CONFIG_SOC_PART_NUMBER_SAM4S16C) - #include +#include #else - #error Library does not support the specified device. +#error Library does not support the specified device. #endif #include "soc_pinmap.h" diff --git a/arch/arm/soc/atmel_sam/same70/soc.h b/arch/arm/soc/atmel_sam/same70/soc.h index af397b137b1..1cd592711f4 100644 --- a/arch/arm/soc/atmel_sam/same70/soc.h +++ b/arch/arm/soc/atmel_sam/same70/soc.h @@ -20,23 +20,23 @@ #define DONT_USE_PREDEFINED_PERIPHERALS_HANDLERS #if defined CONFIG_SOC_PART_NUMBER_SAME70J19 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70J20 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70J21 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70N19 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70N20 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70N21 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70Q19 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70Q20 - #include +#include #elif defined CONFIG_SOC_PART_NUMBER_SAME70Q21 - #include +#include #else #error Library does not support the specified device. #endif diff --git a/drivers/sensor/lsm9ds0_gyro/lsm9ds0_gyro_trigger.c b/drivers/sensor/lsm9ds0_gyro/lsm9ds0_gyro_trigger.c index 72a7419d05e..c222b794aa6 100644 --- a/drivers/sensor/lsm9ds0_gyro/lsm9ds0_gyro_trigger.c +++ b/drivers/sensor/lsm9ds0_gyro/lsm9ds0_gyro_trigger.c @@ -4,17 +4,17 @@ * SPDX-License-Identifier: Apache-2.0 */ - #include - #include - #include - #include - #include - #include - #include +#include +#include +#include +#include +#include +#include +#include - #include +#include - #include "lsm9ds0_gyro.h" +#include "lsm9ds0_gyro.h" extern struct lsm9ds0_gyro_data lsm9ds0_gyro_data; diff --git a/tests/kernel/fp_sharing/src/main.c b/tests/kernel/fp_sharing/src/main.c index 80d09aba78a..5292537c43a 100644 --- a/tests/kernel/fp_sharing/src/main.c +++ b/tests/kernel/fp_sharing/src/main.c @@ -47,17 +47,17 @@ #include #if defined(CONFIG_ISA_IA32) - #if defined(__GNUC__) - #include - #else - #include - #endif /* __GNUC__ */ +#if defined(__GNUC__) +#include +#else +#include +#endif /* __GNUC__ */ #elif defined(CONFIG_CPU_CORTEX_M4) - #if defined(__GNUC__) - #include - #else - #include - #endif /* __GNUC__ */ +#if defined(__GNUC__) +#include +#else +#include +#endif /* __GNUC__ */ #endif #include