aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-04-06 09:58:05 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-04-06 09:58:05 +0000
commit6e6b675857dcd46f59d40e36185fb41b241ad461 (patch)
treef90b822893d2350a548b27494254e1b7bab68dfb
parent4d25bb22227418039e59123051042956e7f9663e (diff)
downloadChibiOS-6e6b675857dcd46f59d40e36185fb41b241ad461.tar.gz
ChibiOS-6e6b675857dcd46f59d40e36185fb41b241ad461.tar.bz2
ChibiOS-6e6b675857dcd46f59d40e36185fb41b241ad461.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7862 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r--os/nil/include/nil.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/os/nil/include/nil.h b/os/nil/include/nil.h
index ca84be502..5b56bf554 100644
--- a/os/nil/include/nil.h
+++ b/os/nil/include/nil.h
@@ -520,9 +520,9 @@ struct nil_system {
*
* @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) \
@@ -538,9 +538,9 @@ struct nil_system {
*
* @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) \