From c436241792c98461daab07494fbde4609d9c0bb5 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Sun, 12 Feb 2017 11:25:17 +0100 Subject: [PATCH] boards/nucleo32-f303: fix header guards --- boards/nucleo32-f303/include/board.h | 6 +++--- boards/nucleo32-f303/include/periph_conf.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/boards/nucleo32-f303/include/board.h b/boards/nucleo32-f303/include/board.h index 5eed307664..9eb9b72b87 100644 --- a/boards/nucleo32-f303/include/board.h +++ b/boards/nucleo32-f303/include/board.h @@ -18,8 +18,8 @@ * @author Alexandre Abadie */ -#ifndef BOARD_H_ -#define BOARD_H_ +#ifndef BOARD_H +#define BOARD_H #ifdef __cplusplus extern "C" { @@ -47,5 +47,5 @@ void board_init(void); } #endif -#endif /* BOARD_H_ */ +#endif /* BOARD_H */ /** @} */ diff --git a/boards/nucleo32-f303/include/periph_conf.h b/boards/nucleo32-f303/include/periph_conf.h index 39c48c9049..5709344046 100644 --- a/boards/nucleo32-f303/include/periph_conf.h +++ b/boards/nucleo32-f303/include/periph_conf.h @@ -16,8 +16,8 @@ * @author Alexandre Abadie */ -#ifndef PERIPH_CONF_H_ -#define PERIPH_CONF_H_ +#ifndef PERIPH_CONF_H +#define PERIPH_CONF_H #include "periph_cpu.h" @@ -152,5 +152,5 @@ static const pwm_conf_t pwm_config[] = { } #endif -#endif /* PERIPH_CONF_H_ */ +#endif /* PERIPH_CONF_H */ /** @} */