core: system: Rename GetDeviceManager -> DeviceManager.

- More consistent with other system components.
This commit is contained in:
bunnei 2020-04-08 19:18:10 -04:00
parent 3fcc4cab4f
commit 11c02a50e9
3 changed files with 7 additions and 7 deletions

View file

@ -937,7 +937,7 @@ ResultVal<VAddr> PageTable::AllocateAndMapMemory(std::size_t needed_num_pages, s
}
PAddr PageTable::GetPhysicalAddr(VAddr addr) {
return system.GetDeviceMemory().GetPhysicalAddr(addr);
return system.DeviceMemory().GetPhysicalAddr(addr);
}
ResultCode PageTable::InitializeMemoryLayout(VAddr start, VAddr end) {