summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-07-01 09:51:50 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-07-01 09:51:50 +0000
commit59673224e00e1ed566e782532b797e564fada90d (patch)
tree58178b2875bb004c16bc6ecacc6d0f20c4d4ba51 /cpukit/libfs
parent2010-06-30 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-59673224e00e1ed566e782532b797e564fada90d.tar.bz2
2010-07-01 Sebastian Huber <sebastian.huber@embedded-brains.de>
* 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.
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/nfsclient/src/librtemsNfs.h4
-rw-r--r--cpukit/libfs/src/nfsclient/src/nfs.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libfs/src/nfsclient/src/librtemsNfs.h b/cpukit/libfs/src/nfsclient/src/librtemsNfs.h
index 01ef9a3a76..fc17d1de7f 100644
--- a/cpukit/libfs/src/nfsclient/src/librtemsNfs.h
+++ b/cpukit/libfs/src/nfsclient/src/librtemsNfs.h
@@ -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.
diff --git a/cpukit/libfs/src/nfsclient/src/nfs.c b/cpukit/libfs/src/nfsclient/src/nfs.c
index 6882d1a66e..6b349445c2 100644
--- a/cpukit/libfs/src/nfsclient/src/nfs.c
+++ b/cpukit/libfs/src/nfsclient/src/nfs.c
@@ -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 */