diff options
Diffstat (limited to 'testhal/AVR/ICU')
-rw-r--r-- | testhal/AVR/ICU/chconf.h | 6 | ||||
-rw-r--r-- | testhal/AVR/ICU/halconf.h | 6 | ||||
-rw-r--r-- | testhal/AVR/ICU/mcuconf.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/testhal/AVR/ICU/chconf.h b/testhal/AVR/ICU/chconf.h index 77a2e5e96..675ae8011 100644 --- a/testhal/AVR/ICU/chconf.h +++ b/testhal/AVR/ICU/chconf.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _CHCONF_H_
-#define _CHCONF_H_
+#ifndef CHCONF_H
+#define CHCONF_H
/*===========================================================================*/
/**
@@ -493,6 +493,6 @@ /* Port-specific settings (override port settings defaulted in chcore.h). */
/*===========================================================================*/
-#endif /* _CHCONF_H_ */
+#endif /* CHCONF_H */
/** @} */
diff --git a/testhal/AVR/ICU/halconf.h b/testhal/AVR/ICU/halconf.h index 442935d61..8cc7bc921 100644 --- a/testhal/AVR/ICU/halconf.h +++ b/testhal/AVR/ICU/halconf.h @@ -25,8 +25,8 @@ * @{
*/
-#ifndef _HALCONF_H_
-#define _HALCONF_H_
+#ifndef HALCONF_H
+#define HALCONF_H
#include "mcuconf.h"
@@ -383,6 +383,6 @@ #define USB_USE_WAIT FALSE
#endif
-#endif /* _HALCONF_H_ */
+#endif /* HALCONF_H */
/** @} */
diff --git a/testhal/AVR/ICU/mcuconf.h b/testhal/AVR/ICU/mcuconf.h index 9f8060737..721e0d900 100644 --- a/testhal/AVR/ICU/mcuconf.h +++ b/testhal/AVR/ICU/mcuconf.h @@ -14,8 +14,8 @@ limitations under the License.
*/
-#ifndef _MCUCONF_H_
-#define _MCUCONF_H_
+#ifndef MCUCONF_H
+#define MCUCONF_H
/*
* AVR drivers configuration.
@@ -77,4 +77,4 @@ #define AVR_SPI_USE_SPI1 FALSE
#define AVR_SPI_USE_16BIT_POLLED_EXCHANGE FALSE
-#endif /* _MCUCONF_H_ */
+#endif /* MCUCONF_H */
|