Kernel: Remove unused FileSystem::dev

This commit is contained in:
2025-06-29 00:29:03 +03:00
parent 944b045885
commit c8c05f62b4
6 changed files with 2 additions and 11 deletions

View File

@@ -50,7 +50,7 @@ namespace Kernel
dev_t TmpInode::dev() const
{
return m_fs.dev();
return m_fs.rdev();
}
BAN::ErrorOr<BAN::RefPtr<TmpInode>> TmpInode::create_from_existing(TmpFileSystem& fs, ino_t ino, const TmpInodeInfo& info)