summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-02-09 15:37:00 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-02-09 15:38:48 +0100
commiteb7753437ff858ebe34a08baef7dfdb45eb0f018 (patch)
tree3e9a8ac739f7f7ee63472879343796ea0bded5d9 /cpukit/libcsupport
parentfstests/fsrename: Avoid double initialization (diff)
downloadrtems-eb7753437ff858ebe34a08baef7dfdb45eb0f018.tar.bz2
Filesystem: Delete unused fsmountme_h handler
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h11
-rw-r--r--cpukit/libcsupport/src/__usrenv.c1
2 files changed, 0 insertions, 12 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index a959cfec77..7a49978de0 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -481,7 +481,6 @@ struct _rtems_filesystem_operations_table {
rtems_filesystem_clonenode_t clonenod_h;
rtems_filesystem_freenode_t freenod_h;
rtems_filesystem_mount_t mount_h;
- rtems_filesystem_fsmount_me_t fsmount_me_h;
rtems_filesystem_unmount_t unmount_h;
rtems_filesystem_fsunmount_me_t fsunmount_me_h;
rtems_filesystem_utime_t utime_h;
@@ -626,16 +625,6 @@ int rtems_filesystem_default_mount (
/**
* @retval -1 Always. The errno is set to ENOTSUP.
*
- * @see rtems_filesystem_fsmount_me_t.
- */
-int rtems_filesystem_default_fsmount(
- rtems_filesystem_mount_table_entry_t *mt_entry, /* IN */
- const void *data /* IN */
-);
-
-/**
- * @retval -1 Always. The errno is set to ENOTSUP.
- *
* @see rtems_filesystem_unmount_t.
*/
int rtems_filesystem_default_unmount(
diff --git a/cpukit/libcsupport/src/__usrenv.c b/cpukit/libcsupport/src/__usrenv.c
index 8fd107e011..567d42d4d9 100644
--- a/cpukit/libcsupport/src/__usrenv.c
+++ b/cpukit/libcsupport/src/__usrenv.c
@@ -210,7 +210,6 @@ static const rtems_filesystem_operations_table null_ops = {
.clonenod_h = null_op_clonenode,
.freenod_h = rtems_filesystem_default_freenode,
.mount_h = null_op_mount,
- .fsmount_me_h = null_op_fsmount_me,
.unmount_h = null_op_unmount,
.fsunmount_me_h = null_op_fsunmount_me,
.utime_h = null_op_utime,