* libfs/src/nfsclient/src/nfs.c, libfs/src/nfsclient/src/nfs.c,
	libfs/src/nfsclient/src/librtemsNfs.h: Renamed
	rtems_nfsfs_initialize() in rtems_nfs_initialize().
	* sapi/include/confdefs.h: Reflect changes above.  Renamed
	*_miniIMFS in *_MINIIMFS.  Renamed *_NFSFS in *_NFS.
This commit is contained in:
Sebastian Huber
2010-07-01 09:51:50 +00:00
parent 7c658feb2e
commit 59673224e0
4 changed files with 31 additions and 23 deletions

View File

@@ -143,8 +143,8 @@ nfsMountsShow(FILE *f);
* Filesystem mount table mount handler. Do not call, use the mount call.
*/
int
rtems_nfsfs_initialize(rtems_filesystem_mount_table_entry_t *mt_entry,
const void *data);
rtems_nfs_initialize(rtems_filesystem_mount_table_entry_t *mt_entry,
const void *data);
/* A utility routine to find the path leading to a
* rtems_filesystem_location_info_t node.

View File

@@ -1908,8 +1908,8 @@ struct rtems_filesystem_mount_table_entry_tt {
#endif
int rtems_nfsfs_initialize(
rtems_filesystem_mount_table_entry_t *mt_entry,
int rtems_nfs_initialize(
rtems_filesystem_mount_table_entry_t *mt_entry,
const void *data
)
{
@@ -2479,7 +2479,7 @@ struct _rtems_filesystem_operations_table nfs_fs_ops = {
nfs_chown, /* OPTIONAL; may be defaulted */
nfs_freenode, /* OPTIONAL; may be defaulted; (release node_access) */
nfs_mount, /* OPTIONAL; may be defaulted */
rtems_nfsfs_initialize, /* OPTIONAL; may be defaulted -- not used anymore */
rtems_nfs_initialize, /* OPTIONAL; may be defaulted -- not used anymore */
nfs_unmount, /* OPTIONAL; may be defaulted */
nfs_fsunmount_me, /* OPTIONAL; may be defaulted */
nfs_utime, /* OPTIONAL; may be defaulted */