diff options
author | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-04-26 19:49:03 +0000 |
---|---|---|
committer | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-04-26 19:49:03 +0000 |
commit | 09fdf34a2516eefd6ddf362b4f83a31145242891 (patch) | |
tree | 0a5b97fd4217f10e2e2ff1c7ab7213f40eab4d55 | |
parent | 691bfc683e70786c07fed664a0e98b3d9dc1207c (diff) | |
download | ChibiOS-09fdf34a2516eefd6ddf362b4f83a31145242891.tar.gz ChibiOS-09fdf34a2516eefd6ddf362b4f83a31145242891.tar.bz2 ChibiOS-09fdf34a2516eefd6ddf362b4f83a31145242891.zip |
Change the macro on the hearder file.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10189 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/ports/AVR/hal_i2c_lld.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/ports/AVR/hal_i2c_lld.h b/os/hal/ports/AVR/hal_i2c_lld.h index 289b46450..21ad13ec1 100644 --- a/os/hal/ports/AVR/hal_i2c_lld.h +++ b/os/hal/ports/AVR/hal_i2c_lld.h @@ -22,8 +22,8 @@ * @{
*/
-#ifndef _I2C_LLD_H_
-#define _I2C_LLD_H_
+#ifndef I2C_LLD_H
+#define I2C_LLD_H
#if HAL_USE_I2C || defined(__DOXYGEN__)
@@ -215,6 +215,6 @@ extern "C" { #endif /* HAL_USE_I2C */
-#endif /* _I2C_LLD_H_ */
+#endif /* I2C_LLD_H */
/** @} */
|