diff --git a/boards/frdm-k64f/include/board.h b/boards/frdm-k64f/include/board.h index 28ae56ae0b..9e557926b7 100644 --- a/boards/frdm-k64f/include/board.h +++ b/boards/frdm-k64f/include/board.h @@ -19,8 +19,8 @@ * @author Johann Fischer */ -#ifndef __BOARD_H -#define __BOARD_H +#ifndef BOARD_H +#define BOARD_H #include "cpu.h" #include "periph_conf.h" @@ -94,5 +94,5 @@ void board_init(void); } #endif -#endif /** __BOARD_H */ +#endif /** BOARD_H */ /** @} */ diff --git a/boards/frdm-k64f/include/periph_conf.h b/boards/frdm-k64f/include/periph_conf.h index 6343feb661..ea4ee444c2 100644 --- a/boards/frdm-k64f/include/periph_conf.h +++ b/boards/frdm-k64f/include/periph_conf.h @@ -17,8 +17,8 @@ * @author Johann Fischer */ -#ifndef __PERIPH_CONF_H -#define __PERIPH_CONF_H +#ifndef PERIPH_CONF_H +#define PERIPH_CONF_H #include "cpu_conf.h" @@ -284,12 +284,11 @@ extern "C" #define KINETIS_RNGA RNG #define RANDOM_CLKEN() (SIM->SCGC6 |= (1 << 9)) #define RANDOM_CLKDIS() (SIM->SCGC6 &= ~(1 << 9)) - /** @} */ #ifdef __cplusplus } #endif -#endif /* __PERIPH_CONF_H */ +#endif /* PERIPH_CONF_H */ /** @} */ diff --git a/boards/nrf51dongle/include/periph_conf.h b/boards/nrf51dongle/include/periph_conf.h index 97a9e093f8..8ea27056a0 100644 --- a/boards/nrf51dongle/include/periph_conf.h +++ b/boards/nrf51dongle/include/periph_conf.h @@ -16,8 +16,8 @@ * @author Hauke Petersen */ -#ifndef __PERIPH_CONF_H -#define __PERIPH_CONF_H +#ifndef PERIPH_CONF_H +#define PERIPH_CONF_H #ifdef __cplusplus extern "C" { @@ -120,4 +120,5 @@ extern "C" { } #endif -#endif /* __PERIPH_CONF_H */ +#endif /* PERIPH_CONF_H */ +/** @} */ diff --git a/boards/nrf6310/include/board.h b/boards/nrf6310/include/board.h index 081419e961..3615968c05 100644 --- a/boards/nrf6310/include/board.h +++ b/boards/nrf6310/include/board.h @@ -20,8 +20,8 @@ * @author Frank Holtz */ -#ifndef __BOARD_H -#define __BOARD_H +#ifndef BOARD_H +#define BOARD_H #include "cpu.h" @@ -77,5 +77,5 @@ void board_init(void); } #endif -#endif /** __BOARD_H */ +#endif /** BOARD_H */ /** @} */ diff --git a/boards/nrf6310/include/periph_conf.h b/boards/nrf6310/include/periph_conf.h index a1b91736e8..4027e15744 100644 --- a/boards/nrf6310/include/periph_conf.h +++ b/boards/nrf6310/include/periph_conf.h @@ -19,8 +19,8 @@ * @author Frank Holtz */ -#ifndef __PERIPH_CONF_H -#define __PERIPH_CONF_H +#ifndef PERIPH_CONF_H +#define PERIPH_CONF_H #ifdef __cplusplus extern "C" { @@ -148,4 +148,5 @@ extern "C" { } #endif -#endif /* __PERIPH_CONF_H */ +#endif /* PERIPH_CONF_H */ +/** @} */ diff --git a/boards/saml21-xpro/include/board.h b/boards/saml21-xpro/include/board.h index a061a815a5..2bc2fc2112 100644 --- a/boards/saml21-xpro/include/board.h +++ b/boards/saml21-xpro/include/board.h @@ -18,8 +18,8 @@ * @author Thomas Eichinger */ -#ifndef __BOARD_H -#define __BOARD_H +#ifndef BOARD_H +#define BOARD_H #include "cpu.h" @@ -79,5 +79,5 @@ void board_init(void); } #endif -#endif /** __BOARD_H */ +#endif /** BOARD_H */ /** @} */ diff --git a/boards/saml21-xpro/include/periph_conf.h b/boards/saml21-xpro/include/periph_conf.h index c624f73e78..0f94f00091 100644 --- a/boards/saml21-xpro/include/periph_conf.h +++ b/boards/saml21-xpro/include/periph_conf.h @@ -19,8 +19,8 @@ * @autor Kaspar Schleiser */ -#ifndef __PERIPH_CONF_H -#define __PERIPH_CONF_H +#ifndef PERIPH_CONF_H +#define PERIPH_CONF_H #ifdef __cplusplus extern "C" { @@ -109,5 +109,5 @@ extern "C" { } #endif -#endif /* __PERIPH_CONF_H */ +#endif /* PERIPH_CONF_H */ /** @} */