From f91cf5d531abac60c91838a2c4b46d52cf88522c Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 13 Mar 2017 23:49:10 +0100 Subject: [PATCH 1/2] boards/nucleo_common: remove extra underscore in header guard --- boards/nucleo-common/include/board_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boards/nucleo-common/include/board_common.h b/boards/nucleo-common/include/board_common.h index b03d505a19..85fe4ea721 100644 --- a/boards/nucleo-common/include/board_common.h +++ b/boards/nucleo-common/include/board_common.h @@ -18,8 +18,8 @@ * @author Hauke Petersen */ -#ifndef BOARD_COMMON__H -#define BOARD_COMMON__H +#ifndef BOARD_COMMON_H +#define BOARD_COMMON_H #include "cpu.h" #include "periph_conf.h" @@ -55,5 +55,5 @@ void board_init(void); } #endif -#endif /* BOARD_COMMON__H */ +#endif /* BOARD_COMMON_H */ /** @} */ From 84aad1fc1e134c557a34f658d8274fe654984c31 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 13 Mar 2017 23:54:03 +0100 Subject: [PATCH 2/2] boards/remote-common: remove extra underscore in header guard --- boards/remote-common/include/board_common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/boards/remote-common/include/board_common.h b/boards/remote-common/include/board_common.h index 555e173fe9..a6df5b7d1d 100644 --- a/boards/remote-common/include/board_common.h +++ b/boards/remote-common/include/board_common.h @@ -19,8 +19,8 @@ * Antonio Lignan */ -#ifndef BOARD_COMMON__H -#define BOARD_COMMON__H +#ifndef BOARD_COMMON_H +#define BOARD_COMMON_H #include "cpu.h" #include "periph/gpio.h" @@ -94,5 +94,5 @@ void board_init(void); #ifdef __cplusplus } /* end extern "C" */ #endif -#endif /* BOARD_COMMON__H */ +#endif /* BOARD_COMMON_H */ /** @} */