diff options
Diffstat (limited to 'os/kernel')
-rw-r--r-- | os/kernel/include/chevents.h | 2 | ||||
-rw-r--r-- | os/kernel/src/chevents.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/os/kernel/include/chevents.h b/os/kernel/include/chevents.h index ec5c1cb93..d8bd269ea 100644 --- a/os/kernel/include/chevents.h +++ b/os/kernel/include/chevents.h @@ -120,7 +120,7 @@ typedef void (*evhandler_t)(eventid_t); * @note This function can be invoked before the kernel is initialized
* because it just prepares a @p EventSource structure.
*
- * @param[in] esp pointer to the @p EventSource structure
+ * @param[out] esp pointer to the @p EventSource structure
*
* @init
*/
diff --git a/os/kernel/src/chevents.c b/os/kernel/src/chevents.c index 1a2285779..51c626bf9 100644 --- a/os/kernel/src/chevents.c +++ b/os/kernel/src/chevents.c @@ -69,7 +69,7 @@ * different threads.
*
* @param[in] esp pointer to the @p EventSource structure
- * @param[in] elp pointer to the @p EventListener structure
+ * @param[out] elp pointer to the @p EventListener structure
* @param[in] mask the mask of event flags to be ORed to the thread when
* the event source is broadcasted
*
|