diff options
author | Fabio Utzig <utzig@utzig.org> | 2016-04-04 19:50:15 -0300 |
---|---|---|
committer | Fabio Utzig <utzig@utzig.org> | 2016-04-04 19:50:15 -0300 |
commit | 39b332e3dd2dabc37241a3c2c0371a719ac6d1fa (patch) | |
tree | f0ab0bf93da4c3704b101bd19e166a098bc9a0d6 /os/hal/ports/TIVA/TM4C123x | |
parent | 1c1fd7d294e41c92ba2426b1a0905c7fdeb96434 (diff) | |
download | ChibiOS-Contrib-39b332e3dd2dabc37241a3c2c0371a719ac6d1fa.tar.gz ChibiOS-Contrib-39b332e3dd2dabc37241a3c2c0371a719ac6d1fa.tar.bz2 ChibiOS-Contrib-39b332e3dd2dabc37241a3c2c0371a719ac6d1fa.zip |
Fix header guard style
Diffstat (limited to 'os/hal/ports/TIVA/TM4C123x')
-rw-r--r-- | os/hal/ports/TIVA/TM4C123x/hal_lld.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/TIVA/TM4C123x/hal_lld.h b/os/hal/ports/TIVA/TM4C123x/hal_lld.h index 5c2cd25..ea8fc79 100644 --- a/os/hal/ports/TIVA/TM4C123x/hal_lld.h +++ b/os/hal/ports/TIVA/TM4C123x/hal_lld.h @@ -25,8 +25,8 @@ * @{ */ -#ifndef _HAL_LLD_H_ -#define _HAL_LLD_H_ +#ifndef HAL_LLD_H +#define HAL_LLD_H #include "tiva_registry.h" @@ -355,7 +355,7 @@ extern "C" { } #endif -#endif /* _HAL_LLD_H_ */ +#endif /* HAL_LLD_H */ /** * @} |