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
This commit is contained in:
Axel Dörfler 2004-11-01 01:03:04 +00:00
parent ae4cfab6b9
commit ffc27ddbe7

View File

@ -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;
}