2010-06-12 Ralf Corsépius <ralf.corsepius@rtems.org>

* libfs/src/devfs/devfs.h, libfs/src/rfs/rtems-rfs-block-pos.h,
	libfs/src/rfs/rtems-rfs-block.h, libfs/src/rfs/rtems-rfs-dir.h,
	libfs/src/rfs/rtems-rfs-group.h, libfs/src/rfs/rtems-rfs-inode.h:
	Fix broken doxygen commands.
This commit is contained in:
Ralf Corsepius
2010-06-12 05:19:25 +00:00
parent 5f86054d9f
commit 727e502fe6
7 changed files with 19 additions and 13 deletions

View File

@@ -1,3 +1,10 @@
2010-06-12 Ralf Corsépius <ralf.corsepius@rtems.org>
* libfs/src/devfs/devfs.h, libfs/src/rfs/rtems-rfs-block-pos.h,
libfs/src/rfs/rtems-rfs-block.h, libfs/src/rfs/rtems-rfs-dir.h,
libfs/src/rfs/rtems-rfs-group.h, libfs/src/rfs/rtems-rfs-inode.h:
Fix broken doxygen commands.
2010-06-09 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Remove nios2 (unsupported, no toolchain).

View File

@@ -267,7 +267,6 @@ extern int devFS_initialize(
* This routine is intended for debugging, and can be used by shell
* program to provide user with the system information.
*
* @param none
* @retval 0
*/

View File

@@ -72,7 +72,7 @@ typedef struct rtems_rfs_block_pos_t
* Copy a block position.
*
* @param _lhs The left hand side.
* @parma _rhs The right handl side.
* @param _rhs The right hand side.
*/
#define rtems_rfs_block_copy_bpos(_lhs, _rhs) \
do { (_lhs)->bno = (_rhs)->bno; \
@@ -156,7 +156,7 @@ typedef struct rtems_rfs_block_size_t
* Copy a block size.
*
* @param _lhs The left hand side.
* @parma _rhs The right handl side.
* @param _rhs The right hand side.
*/
#define rtems_rfs_block_copy_size(_lhs, _rhs) \
do { (_lhs)->count = (_rhs)->count; \

View File

@@ -201,7 +201,7 @@ typedef struct rtems_rfs_block_map_t
* so a seek of offset 0 will return the first block.
*
* @param fs The file system data.
* @prarm inode The inode the map belongs to.
* @param inode The inode the map belongs to.
* @param map The map that is opened.
* @return int The error number (errno). No error if 0.
*/

View File

@@ -83,7 +83,7 @@
* Set the hash of the entry.
*
* @param _e Pointer to the directory entry.
* @aparam _h The hash.
* @param _h The hash.
*/
#define rtems_rfs_dir_set_entry_hash(_e, _h) \
rtems_rfs_write_u32 (_e + RTEMS_RFS_DIR_ENTRY_HASH, _h)
@@ -138,7 +138,7 @@
*/
int rtems_rfs_dir_lookup_ino (rtems_rfs_file_system* fs,
rtems_rfs_inode_handle* inode,
const char* path,
const char* name,
int length,
rtems_rfs_ino* ino,
uint32_t* offset);
@@ -150,7 +150,7 @@ int rtems_rfs_dir_lookup_ino (rtems_rfs_file_system* fs,
* @param fs The file system data.
* @param dir Pointer to the directory inode the entry is to be added too.
* @param name The name of the entry to be added.
* @param length The length of the name excluding a terminating \0.
* @param length The length of the name excluding a terminating 0.
* @param ino The ino of the entry.
* @return int The error number (errno). No error if 0.
*/

View File

@@ -127,7 +127,7 @@ int rtems_rfs_group_bitmap_alloc (rtems_rfs_file_system* fs,
*
* @param fs The file system data.
* @param inode If true the number to free is an inode else it is a block.
* @prarm block The inode or block number to free.
* @param block The inode or block number to free.
* @return int The error number (errno). No error if 0.
*/
int rtems_rfs_group_bitmap_free (rtems_rfs_file_system* fs,
@@ -139,8 +139,8 @@ int rtems_rfs_group_bitmap_free (rtems_rfs_file_system* fs,
*
* @param fs The file system data.
* @param inode If true the number to free is an inode else it is a block.
* @prarm block The inode or block number to free.
* @prarm state Return the state of the bit.
* @param block The inode or block number to free.
* @param state Return the state of the bit.
* @return int The error number (errno). No error if 0.
*/
int rtems_rfs_group_bitmap_test (rtems_rfs_file_system* fs,
@@ -152,7 +152,7 @@ int rtems_rfs_group_bitmap_test (rtems_rfs_file_system* fs,
* Determine the number of blocks and inodes used.
*
* @param fs The file system data.
* @prarm blocks The number of blocks used.
* @param blocks The number of blocks used.
* @param inodes The number of inodes used.
* @return int The error number (errno). No error if 0.
*/

View File

@@ -576,7 +576,7 @@ int rtems_rfs_inode_free (rtems_rfs_file_system* fs,
* the supporting calls.
*
* @param fs The file system.
* @parma ino The inode number.
* @param ino The inode number.
* @param handle The handle to the inode we are opening.
* @param load If true load the inode into memory from the media.
* @return int The error number (errno). No error if 0.
@@ -682,7 +682,7 @@ int rtems_rfs_inode_time_stamp_now (rtems_rfs_inode_handle* handle,
* Calculate the size of data attached to the inode.
*
* @param fs The file system data.
* @oaram handle The inode handle.
* @param handle The inode handle.
* @return rtems_rfs_pos The data size in bytes in the block map attched to the
* inode.
*/