diff options
Diffstat (limited to 'testhal/AVR/GPT')
-rw-r--r-- | testhal/AVR/GPT/chconf.h | 6 | ||||
-rw-r--r-- | testhal/AVR/GPT/halconf.h | 6 | ||||
-rw-r--r-- | testhal/AVR/GPT/mcuconf.h | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/testhal/AVR/GPT/chconf.h b/testhal/AVR/GPT/chconf.h index 77a2e5e96..675ae8011 100644 --- a/testhal/AVR/GPT/chconf.h +++ b/testhal/AVR/GPT/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/GPT/halconf.h b/testhal/AVR/GPT/halconf.h index c67d529bc..7bf1cb7b2 100644 --- a/testhal/AVR/GPT/halconf.h +++ b/testhal/AVR/GPT/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/GPT/mcuconf.h b/testhal/AVR/GPT/mcuconf.h index 36cf50bb6..69ec6da52 100644 --- a/testhal/AVR/GPT/mcuconf.h +++ b/testhal/AVR/GPT/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 */
|