1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18837 from gschorcht/core/xfa/doc_fix

core/lib/xfa: fix parameter documentation
This commit is contained in:
Juergen Fitschen 2022-11-03 21:26:28 +01:00 committed by GitHub
commit 97832d0595
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* error: ISO C forbids empty initializer braces
* error: ISO C forbids zero-size array xfatest_const_end
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_INIT_CONST(type, name) \
@ -86,7 +86,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* error: ISO C forbids empty initializer braces
* error: ISO C forbids zero-size array xfatest_end
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_INIT(type, name) \
@ -105,7 +105,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* It is supposed to be used in compilation units where the cross file array is
* being accessed, but not defined using XFA_INIT.
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_USE_CONST(type, name) \
@ -120,7 +120,7 @@ _Pragma("GCC diagnostic ignored \"-Warray-bounds\"")
* It is supposed to be used in compilation units where the cross file array is
* being accessed, but not defined using XFA_INIT.
*
* @param[in] type name of the cross-file array
* @param[in] type type of the cross-file array
* @param[in] name name of the cross-file array
*/
#define XFA_USE(type, name) \