From 78bdec935640d9894914c159d136f02b285c9d66 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Wed, 2 Dec 2015 10:56:28 +0100 Subject: [PATCH] boards/saml21-xpro: fixed include guards --- boards/saml21-xpro/include/board.h | 6 +++--- boards/saml21-xpro/include/periph_conf.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/boards/saml21-xpro/include/board.h b/boards/saml21-xpro/include/board.h index a061a815a..2bc2fc211 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 c624f73e7..0f94f0009 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 */ /** @} */