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:
parent
ae4cfab6b9
commit
ffc27ddbe7
@ -9,8 +9,8 @@
|
|||||||
|
|
||||||
|
|
||||||
status_t
|
status_t
|
||||||
fs_mount_volume(const char *fileSystem, const char *where,
|
fs_mount_volume(const char *where, const char *device,
|
||||||
const char *device, uint32 flags, const char *parameters)
|
const char *fileSystem, uint32 flags, const char *parameters)
|
||||||
{
|
{
|
||||||
return _kern_mount(where, device, fileSystem, flags, (void *)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*/);
|
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user