diff mbox

[7/8] helper: add strong types documentation section

Message ID 1462826592-24895-7-git-send-email-mike.holmes@linaro.org
State Accepted
Commit 341adfeafdc0aa784dd7a0703d638657d18b44fe
Headers show

Commit Message

Mike Holmes May 9, 2016, 8:43 p.m. UTC
Signed-off-by: Mike Holmes <mike.holmes@linaro.org>
---
 helper/include/odp/helper/strong_types.h | 8 ++++++++
 1 file changed, 8 insertions(+)
diff mbox

Patch

diff --git a/helper/include/odp/helper/strong_types.h b/helper/include/odp/helper/strong_types.h
index 777e24d..13e35a4 100644
--- a/helper/include/odp/helper/strong_types.h
+++ b/helper/include/odp/helper/strong_types.h
@@ -14,6 +14,10 @@ 
 #ifndef ODPH_STRONG_TYPES_H_
 #define ODPH_STRONG_TYPES_H_
 
+/** @addtogroup odph_strong_types ODPH STRONG TYPES
+ *  @{
+ */
+
 /** Use strong typing for ODP types */
 #ifdef __cplusplus
 #define ODPH_HANDLE_T(type) struct _##type { uint8_t unused_dummy_var; } *type
@@ -32,4 +36,8 @@ 
 /** Internal macro to convert a scalar to a typed handle */
 #define _odph_cast_scalar(type, val) ((type)(uintptr_t)(val))
 
+/**
+ * @}
+ */
+
 #endif