diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/rt/include/chsys.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/rt/include/chsys.h b/os/rt/include/chsys.h index a92a67008..26c266dd5 100644 --- a/os/rt/include/chsys.h +++ b/os/rt/include/chsys.h @@ -70,9 +70,9 @@ *
* @param[in] prio the priority level
* @return Priority range result.
- * @false if the priority is invalid or if the architecture
+ * @retval false if the priority is invalid or if the architecture
* does not support priorities.
- * @true if the priority is valid.
+ * @retval true if the priority is valid.
*/
#if defined(PORT_IRQ_IS_VALID_PRIORITY) || defined(__DOXYGEN__)
#define CH_IRQ_IS_VALID_PRIORITY(prio) \
@@ -88,9 +88,9 @@ *
* @param[in] prio the priority level
* @return Priority range result.
- * @false if the priority is invalid or if the architecture
+ * @retval false if the priority is invalid or if the architecture
* does not support priorities.
- * @true if the priority is valid.
+ * @retval true if the priority is valid.
*/
#if defined(PORT_IRQ_IS_VALID_KERNEL_PRIORITY) || defined(__DOXYGEN__)
#define CH_IRQ_IS_VALID_KERNEL_PRIORITY(prio) \
|