summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-12 05:18:16 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-12 05:18:16 +0000
commit01f416029f11bdfe53457fcc78f58f0be2ca8a46 (patch)
tree130d3de62c036c030ae3faa2e352384c118b8951
parent2010-06-11 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-01f416029f11bdfe53457fcc78f58f0be2ca8a46.tar.bz2
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.
-rw-r--r--cpukit/ChangeLog7
-rw-r--r--cpukit/libfs/src/devfs/devfs.h1
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-block-pos.h4
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-block.h2
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-dir.h6
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-group.h8
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-inode.h4
7 files changed, 19 insertions, 13 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index a1fca7acb5..fcdaaccec8 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -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-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* Doxygen.in: Update.
diff --git a/cpukit/libfs/src/devfs/devfs.h b/cpukit/libfs/src/devfs/devfs.h
index 80f67e8450..353f8d1209 100644
--- a/cpukit/libfs/src/devfs/devfs.h
+++ b/cpukit/libfs/src/devfs/devfs.h
@@ -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
*/
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h b/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h
index 899e915695..5a9d2ead64 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-block-pos.h
@@ -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; \
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-block.h b/cpukit/libfs/src/rfs/rtems-rfs-block.h
index a7ae8e3974..5b8dad6d4c 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-block.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-block.h
@@ -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.
*/
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-dir.h b/cpukit/libfs/src/rfs/rtems-rfs-dir.h
index 2852908ea7..1f452460db 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-dir.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-dir.h
@@ -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.
*/
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-group.h b/cpukit/libfs/src/rfs/rtems-rfs-group.h
index 0823612c0d..f44bf7812f 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-group.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-group.h
@@ -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.
*/
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-inode.h b/cpukit/libfs/src/rfs/rtems-rfs-inode.h
index 663bed5ef7..89c8f88ffe 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-inode.h
+++ b/cpukit/libfs/src/rfs/rtems-rfs-inode.h
@@ -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.
*/