mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:48:12 +00:00
Kernel: Rename vmo => vmobject everywhere
This commit is contained in:
parent
8ea4217c01
commit
b6ee8a2c8d
15 changed files with 47 additions and 47 deletions
|
@ -27,11 +27,11 @@ KResultOr<Region*> MBVGADevice::mmap(Process& process, FileDescription&, Virtual
|
|||
{
|
||||
ASSERT(offset == 0);
|
||||
ASSERT(size == framebuffer_size_in_bytes());
|
||||
auto vmo = AnonymousVMObject::create_for_physical_range(m_framebuffer_address, framebuffer_size_in_bytes());
|
||||
auto* region = process.allocate_region_with_vmo(
|
||||
auto vmobject = AnonymousVMObject::create_for_physical_range(m_framebuffer_address, framebuffer_size_in_bytes());
|
||||
auto* region = process.allocate_region_with_vmobject(
|
||||
preferred_vaddr,
|
||||
framebuffer_size_in_bytes(),
|
||||
move(vmo),
|
||||
move(vmobject),
|
||||
0,
|
||||
"MBVGA Framebuffer",
|
||||
prot);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue