mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-12 23:16:40 +00:00
kern: fix carveout region calcs
This commit is contained in:
parent
5961151a92
commit
23f5d77f37
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ namespace ams::kern {
|
||||||
}
|
}
|
||||||
|
|
||||||
static NOINLINE auto GetCarveoutRegionExtents() {
|
static NOINLINE auto GetCarveoutRegionExtents() {
|
||||||
return GetVirtualMemoryRegionTree().GetDerivedRegionExtents(KMemoryRegionAttr_CarveoutProtected);
|
return GetPhysicalMemoryRegionTree().GetDerivedRegionExtents(KMemoryRegionAttr_CarveoutProtected);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void InitializeLinearMemoryRegionTrees(KPhysicalAddress aligned_linear_phys_start, KVirtualAddress linear_virtual_start);
|
static void InitializeLinearMemoryRegionTrees(KPhysicalAddress aligned_linear_phys_start, KVirtualAddress linear_virtual_start);
|
||||||
|
|
Loading…
Reference in a new issue