summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/unmount.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/unmount.c')
-rw-r--r--cpukit/libcsupport/src/unmount.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/cpukit/libcsupport/src/unmount.c b/cpukit/libcsupport/src/unmount.c
index 12c659dd6d..1ed5c7dabd 100644
--- a/cpukit/libcsupport/src/unmount.c
+++ b/cpukit/libcsupport/src/unmount.c
@@ -88,17 +88,6 @@ int unmount(
rtems_filesystem_freenode( &loc );
/*
- * Verify Unmount is supported by both filesystems.
- */
-
- if ( !fs_mount_loc->ops->unmount_h )
- rtems_set_errno_and_return_minus_one( ENOTSUP );
-
- if ( !fs_root_loc->ops->fsunmount_me_h )
- rtems_set_errno_and_return_minus_one( ENOTSUP );
-
-
- /*
* Verify the current node is not in this filesystem.
* XXX - Joel I have a question here wasn't code added
* that made the current node thread based instead