From ffc27ddbe743fd171ec15d948ec591c11849ad92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Mon, 1 Nov 2004 01:03:04 +0000 Subject: [PATCH] fs_mount_volume() changed the order of arguments to be more intuitive. Removed the fs_initialize_volume() function, as it's probably not going to be needed. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9695 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/os/fs_volume.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/kernel/libroot/os/fs_volume.c b/src/kernel/libroot/os/fs_volume.c index b5c85c9af8..f03cbe221e 100644 --- a/src/kernel/libroot/os/fs_volume.c +++ b/src/kernel/libroot/os/fs_volume.c @@ -9,8 +9,8 @@ status_t -fs_mount_volume(const char *fileSystem, const char *where, - const char *device, uint32 flags, const char *parameters) +fs_mount_volume(const char *where, const char *device, + const char *fileSystem, uint32 flags, const char *parameters) { return _kern_mount(where, device, fileSystem, flags, (void *)parameters); } @@ -22,11 +22,3 @@ fs_unmount_volume(const char *path, uint32 flags) return _kern_unmount(path/*, flags*/); } - -status_t -fs_initialize_volume(const char *fileSystem, const char *volumeName, - const char *device, uint32 flags, const char *parameters) -{ - return B_ERROR; -} -