summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/defaults
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/libfs/src/defaults
parentfstests/fsrename: Avoid double initialization (diff)
downloadrtems-eb7753437ff858ebe34a08baef7dfdb45eb0f018.tar.bz2
Filesystem: Delete unused fsmountme_h handler
Diffstat (limited to 'cpukit/libfs/src/defaults')
-rw-r--r--cpukit/libfs/src/defaults/default_fsmount.c27
-rw-r--r--cpukit/libfs/src/defaults/default_ops.c1
2 files changed, 0 insertions, 28 deletions
diff --git a/cpukit/libfs/src/defaults/default_fsmount.c b/cpukit/libfs/src/defaults/default_fsmount.c
deleted file mode 100644
index 48bff85158..0000000000
--- a/cpukit/libfs/src/defaults/default_fsmount.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/**
- * @file
- *
- * @brief RTEMS Default File System Mounts
- * @ingroup LibIOFSOps File System Operations
- */
-
-/*
- * COPYRIGHT (c) 2010.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#include <rtems/libio.h>
-#include <rtems/libio_.h>
-#include <rtems/seterr.h>
-
-int rtems_filesystem_default_fsmount(
- rtems_filesystem_mount_table_entry_t *mt_entry, /* IN */
- const void *data /* IN */
-)
-{
- rtems_set_errno_and_return_minus_one( ENOTSUP );
-}
diff --git a/cpukit/libfs/src/defaults/default_ops.c b/cpukit/libfs/src/defaults/default_ops.c
index 274336f976..63ad2cefe1 100644
--- a/cpukit/libfs/src/defaults/default_ops.c
+++ b/cpukit/libfs/src/defaults/default_ops.c
@@ -34,7 +34,6 @@ const rtems_filesystem_operations_table rtems_filesystem_operations_default = {
.clonenod_h = rtems_filesystem_default_clonenode,
.freenod_h = rtems_filesystem_default_freenode,
.mount_h = rtems_filesystem_default_mount,
- .fsmount_me_h = rtems_filesystem_default_fsmount,
.unmount_h = rtems_filesystem_default_unmount,
.fsunmount_me_h = rtems_filesystem_default_fsunmount,
.utime_h = rtems_filesystem_default_utime,