Skip to content

Commit 185147b

Browse files
committed
doxygen: fs: unify groupname to lowercase
Signed-off-by: Chen Wang <[email protected]>
1 parent 0441065 commit 185147b

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

components/dfs/dfs_v1/src/dfs.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ static int fd_alloc(struct dfs_fdtable *fdt, int startfd)
297297
}
298298

299299
/**
300-
* @ingroup group_Fd
300+
* @ingroup group_fs_file_descriptor
301301
* This function will allocate a file descriptor.
302302
*
303303
* @return -1 on failed or the allocated file descriptor.
@@ -331,7 +331,7 @@ int fd_new(void)
331331
}
332332

333333
/**
334-
* @ingroup group_Fd
334+
* @ingroup group_fs_file_descriptor
335335
*
336336
* This function will return a file descriptor structure according to file
337337
* descriptor.
@@ -373,7 +373,7 @@ struct dfs_file *fd_get(int fd)
373373
}
374374

375375
/**
376-
* @ingroup group_Fd
376+
* @ingroup group_fs_file_descriptor
377377
*
378378
* @brief This function will release the file descriptor.
379379
*
@@ -480,7 +480,7 @@ rt_err_t sys_dup(int oldfd)
480480
#endif /* DFS_USING_POSIX */
481481

482482
/**
483-
* @ingroup group_Fd
483+
* @ingroup group_fs_file_descriptor
484484
*
485485
* This function will return whether this file has been opend.
486486
*

components/dfs/dfs_v1/src/dfs_file.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ static struct dfs_vnode *dfs_vnode_find(const char *path, rt_list_t **hash_head)
141141
}
142142

143143
/**
144-
* @addtogroup group_FileApi
144+
* @addtogroup group_fs_file_api
145145
* @{
146146
*/
147147

components/dfs/dfs_v1/src/dfs_fs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "dfs_private.h"
1818

1919
/**
20-
* @addtogroup group_FsApi
20+
* @addtogroup group_fs_api
2121
* @{
2222
*/
2323

components/dfs/dfs_v1/src/dfs_posix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#endif
2020

2121
/**
22-
* @addtogroup group_FsPosixApi
22+
* @addtogroup group_fs_posix_api
2323
* @{
2424
*/
2525

components/dfs/dfs_v2/src/dfs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void dfs_file_destroy(struct dfs_file *file)
218218
}
219219

220220
/**
221-
* @ingroup group_Fd
221+
* @ingroup group_fs_file_descriptor
222222
* This function will allocate a file descriptor.
223223
*
224224
* @return -1 on failed or the allocated file descriptor.
@@ -291,7 +291,7 @@ void fdt_fd_release(struct dfs_fdtable *fdt, int fd)
291291
}
292292

293293
/**
294-
* @ingroup group_Fd
294+
* @ingroup group_fs_file_descriptor
295295
*
296296
* This function will return a file descriptor structure according to file
297297
* descriptor.
@@ -369,7 +369,7 @@ int fd_new(void)
369369
}
370370

371371
/**
372-
* @ingroup group_Fd
372+
* @ingroup group_fs_file_descriptor
373373
*
374374
* This function will put the file descriptor.
375375
*/

components/dfs/dfs_v2/src/dfs_fs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ static struct dfs_filesystem_type *file_systems = NULL;
3131
extern rt_list_t _mnt_list;
3232

3333
/**
34-
* @addtogroup group_FsApi
34+
* @addtogroup group_fs_api
3535
*/
3636
/*@{*/
3737

components/dfs/dfs_v2/src/dfs_posix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#endif
2323

2424
/**
25-
* @addtogroup group_FsPosixApi
25+
* @addtogroup group_fs_posix_api
2626
* @{
2727
*/
2828

documentation/0.doxygen/components/filesystem.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
*/
99

1010
/**
11-
* @defgroup group_Fd File Descriptor
11+
* @defgroup group_fs_file_descriptor File Descriptor
1212
*
1313
*/
1414

1515
/**
16-
* @defgroup group_FsApi File System API
16+
* @defgroup group_fs_api File System API
1717
*/
1818

1919
/**
20-
* @defgroup group_FileApi File API
20+
* @defgroup group_fs_file_api File API
2121
*/
2222

2323
/**
24-
* @defgroup group_FsPosixApi File POSIX API
24+
* @defgroup group_fs_posix_api File POSIX API
2525
*/
2626

2727
/**@}*/

0 commit comments

Comments
 (0)