Filesystem: Use ENOTSUP for default mount/unmount

This commit is contained in:
Sebastian Huber
2015-02-12 20:52:16 +01:00
parent 5efbb6619c
commit 194eb0074b
2 changed files with 2 additions and 2 deletions

View File

@@ -22,5 +22,5 @@ int rtems_filesystem_default_mount (
rtems_filesystem_mount_table_entry_t *mt_entry /* IN */
)
{
return 0;
rtems_set_errno_and_return_minus_one( ENOTSUP );
}

View File

@@ -22,5 +22,5 @@ int rtems_filesystem_default_unmount(
rtems_filesystem_mount_table_entry_t *mt_entry /* IN */
)
{
return 0;
rtems_set_errno_and_return_minus_one( ENOTSUP );
}