cpukit/libfs/imfs: Clean white space

This commit is contained in:
Chris Johns
2025-05-30 10:33:40 +10:00
parent 968a7af3c1
commit 1dd2299be2

View File

@@ -426,7 +426,7 @@ extern void IMFS_fsunmount(
/** /**
* @brief RTEMS load tarfs. * @brief RTEMS load tarfs.
* *
* This file implements the "mount" procedure for tar-based IMFS * This file implements the "mount" procedure for tar-based IMFS
* extensions. The TAR is not actually mounted under the IMFS. * extensions. The TAR is not actually mounted under the IMFS.
* Directories from the TAR file are created as usual in the IMFS. * Directories from the TAR file are created as usual in the IMFS.
@@ -440,7 +440,7 @@ extern void IMFS_fsunmount(
* needed. * needed.
* - For files, we make our own calls to IMFS eval_for_make and * - For files, we make our own calls to IMFS eval_for_make and
* create_node. * create_node.
* *
* TAR file format: * TAR file format:
* *
* @code * @code
@@ -498,7 +498,7 @@ extern void IMFS_node_free( const rtems_filesystem_location_info_t *loc );
/** /**
* @brief Perform a status processing for the IMFS. * @brief Perform a status processing for the IMFS.
* *
* This routine provides a stat for the IMFS file system. * This routine provides a stat for the IMFS file system.
*/ */
extern int IMFS_stat( extern int IMFS_stat(
@@ -527,7 +527,7 @@ extern void IMFS_eval_path_devfs(
/** /**
* @brief Create a new IMFS link node. * @brief Create a new IMFS link node.
* *
* The following rouine creates a new link node under parent with the * The following rouine creates a new link node under parent with the
* name given in name. The link node is set to point to the node at * name given in name. The link node is set to point to the node at
* to_loc. * to_loc.
@@ -541,7 +541,7 @@ extern int IMFS_link(
/** /**
* @brief Change the owner of IMFS. * @brief Change the owner of IMFS.
* *
* This routine is the implementation of the chown() system * This routine is the implementation of the chown() system
* call for the IMFS. * call for the IMFS.
*/ */
@@ -553,7 +553,7 @@ extern int IMFS_chown(
/** /**
* @brief Create an IMFS node. * @brief Create an IMFS node.
* *
* Routine to create a node in the IMFS file system. * Routine to create a node in the IMFS file system.
*/ */
extern int IMFS_mknod( extern int IMFS_mknod(
@@ -575,7 +575,7 @@ extern IMFS_jnode_t *IMFS_initialize_node(
/** /**
* @brief Create an IMFS node. * @brief Create an IMFS node.
* *
* Create an IMFS filesystem node of an arbitrary type that is NOT * Create an IMFS filesystem node of an arbitrary type that is NOT
* the root directory node. * the root directory node.
*/ */
@@ -931,8 +931,8 @@ extern int device_ftruncate(
/** /**
* @brief Set IMFS file access and modification times. * @brief Set IMFS file access and modification times.
* *
* *
* This routine is the implementation of the utime() system * This routine is the implementation of the utime() system
* call for the IMFS. * call for the IMFS.
*/ */
@@ -951,7 +951,7 @@ extern int IMFS_fchmod(
/** /**
* @brief Create a new IMFS symbolic link node. * @brief Create a new IMFS symbolic link node.
* *
* The following rouine creates a new symbolic link node under parent * The following rouine creates a new symbolic link node under parent
* with the name given in name. The node is set to point to the node at * with the name given in name. The node is set to point to the node at
* to_loc. * to_loc.
@@ -965,10 +965,10 @@ extern int IMFS_symlink(
/** /**
* @brief Put IMFS symbolic link into buffer. * @brief Put IMFS symbolic link into buffer.
* *
* The following rouine puts the symbolic links destination name into * The following rouine puts the symbolic links destination name into
* buff. * buff.
* *
*/ */
extern ssize_t IMFS_readlink( extern ssize_t IMFS_readlink(
const rtems_filesystem_location_info_t *loc, const rtems_filesystem_location_info_t *loc,
@@ -978,7 +978,7 @@ extern ssize_t IMFS_readlink(
/** /**
* @brief Rename the IMFS. * @brief Rename the IMFS.
* *
* The following rouine creates a new link node under parent with the * The following rouine creates a new link node under parent with the
* name given in name and removes the old. * name given in name and removes the old.
*/ */
@@ -991,7 +991,7 @@ extern int IMFS_rename(
); );
/** /**
* @brief IMFS node removal handler. * @brief IMFS node removal handler.
* *
* This file contains the handler used to remove a node when a file type * This file contains the handler used to remove a node when a file type
* does not require special actions. * does not require special actions.
*/ */