Renamed vfs_register_filesystem() to vfs_register_file_system().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7422 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-05-06 01:22:33 +00:00
parent cdbef38048
commit c947b674ee
3 changed files with 3 additions and 3 deletions

View File

@ -994,6 +994,6 @@ bootstrap_bootfs(void)
TRACE(("bootstrap_bootfs: found bootdir at %p\n", bootdir));
return vfs_register_filesystem("bootfs", &bootfs_ops);
return vfs_register_file_system("bootfs", &bootfs_ops);
}

View File

@ -1092,7 +1092,7 @@ bootstrap_devfs(void)
TRACE(("bootstrap_devfs: entry\n"));
return vfs_register_filesystem("devfs", &devfs_ops);
return vfs_register_file_system("devfs", &devfs_ops);
}

View File

@ -1315,5 +1315,5 @@ bootstrap_pipefs(void)
{
TRACE(("bootstrap_pipefs: entry\n"));
return vfs_register_filesystem("pipefs", &pipefs::pipefs_ops);
return vfs_register_file_system("pipefs", &pipefs::pipefs_ops);
}