aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/include
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/include')
-rw-r--r--os/hal/include/hal_queues.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/os/hal/include/hal_queues.h b/os/hal/include/hal_queues.h
index b9516c984..2153aa104 100644
--- a/os/hal/include/hal_queues.h
+++ b/os/hal/include/hal_queues.h
@@ -49,7 +49,11 @@
*/
typedef struct io_queue io_queue_t;
-/** @brief Queue notification callback type.*/
+/**
+ * @brief Queue notification callback type.
+ *
+ * @param[in] qp the queue pointer.
+ */
typedef void (*qnotify_t)(io_queue_t *qp);
/**