diff options
author | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-04-26 19:48:36 +0000 |
---|---|---|
committer | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-04-26 19:48:36 +0000 |
commit | 6d57cf42581389fcb755deb81b74abae19daa20f (patch) | |
tree | eaec05da229244063076967d796d8cbbe63f7b5c /os/hal/ports/AVR | |
parent | 9d87c02c656e1924fcfcc564ccba6661fe73b427 (diff) | |
download | ChibiOS-6d57cf42581389fcb755deb81b74abae19daa20f.tar.gz ChibiOS-6d57cf42581389fcb755deb81b74abae19daa20f.tar.bz2 ChibiOS-6d57cf42581389fcb755deb81b74abae19daa20f.zip |
Change the macro on the hearder file.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10186 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/AVR')
-rw-r--r-- | os/hal/ports/AVR/avr_timers.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/AVR/avr_timers.h b/os/hal/ports/AVR/avr_timers.h index 4e06c9373..42c275e20 100644 --- a/os/hal/ports/AVR/avr_timers.h +++ b/os/hal/ports/AVR/avr_timers.h @@ -14,8 +14,8 @@ limitations under the License.
*/
-#ifndef _AVR_TIMERS_H_
-#define _AVR_TIMERS_H_
+#ifndef AVR_TIMERS_H
+#define AVR_TIMERS_H
#include "mcuconf.h"
@@ -52,4 +52,4 @@ #error "Timer 5 cannot simultaneously be used by multiple drivers."
#endif
-#endif /* _AVR_TIMERS_H_ */
+#endif /* AVR_TIMERS_H */
|