aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
Diffstat (limited to 'os')
-rw-r--r--os/kernel/include/chinline.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/os/kernel/include/chinline.h b/os/kernel/include/chinline.h
index c70040d55..a0beb7455 100644
--- a/os/kernel/include/chinline.h
+++ b/os/kernel/include/chinline.h
@@ -17,16 +17,16 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef _INLINE_H_
-#define _INLINE_H_
-
/**
- * @file inline.h
+ * @file chinline.h
* @brief Kernel inlined functions.
* @details In this file there are a set of inlined functions if the
* @p CH_OPTIMIZE_SPEED is enabled.
*/
+#ifndef _CHINLINE_H_
+#define _CHINLINE_H_
+
/* If the performance code path has been chosen then all the following
functions are inlined into the various kernel modules.*/
#if CH_OPTIMIZE_SPEED
@@ -81,4 +81,4 @@ static INLINE Thread *list_remove(ThreadsList *tlp) {
}
#endif /* CH_OPTIMIZE_SPEED */
-#endif /* _INLINE_H_ */
+#endif /* _CHINLINE_H_ */