summaryrefslogtreecommitdiffstats
path: root/cpukit/libblock/src/bdpart-mount.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libblock/src/bdpart-mount.c')
-rw-r--r--cpukit/libblock/src/bdpart-mount.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/cpukit/libblock/src/bdpart-mount.c b/cpukit/libblock/src/bdpart-mount.c
index 9c871d2f88..8f2e051c61 100644
--- a/cpukit/libblock/src/bdpart-mount.c
+++ b/cpukit/libblock/src/bdpart-mount.c
@@ -29,7 +29,6 @@
#include <rtems.h>
#include <rtems/bdpart.h>
-#include <rtems/dosfs.h>
#include <rtems/fsmount.h>
rtems_status_code rtems_bdpart_mount(
@@ -99,11 +98,11 @@ rtems_status_code rtems_bdpart_mount(
/* Mount */
rv = mount(
- NULL,
- &msdos_ops,
- 0,
logical_disk_name,
- mount_point
+ mount_point,
+ "msdos",
+ 0,
+ NULL
);
if (rv != 0) {
rmdir( mount_point);