mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
kern: fix unnecessary align-down
This commit is contained in:
parent
73d9d5ff47
commit
a4e09fc6c4
1 changed files with 1 additions and 1 deletions
|
@ -1080,7 +1080,7 @@ namespace ams::kern::arch::arm64 {
|
|||
|
||||
/* Get the addresses we're working with. */
|
||||
const KProcessAddress block_virt_addr = util::AlignDown(GetInteger(virt_addr), L1BlockSize);
|
||||
const KPhysicalAddress block_phys_addr = util::AlignDown(GetInteger(l1_entry->GetBlock()), L1BlockSize);
|
||||
const KPhysicalAddress block_phys_addr = l1_entry->GetBlock();
|
||||
|
||||
/* Allocate a new page for the L2 table. */
|
||||
const KVirtualAddress l2_table = this->AllocatePageTable(page_list, reuse_ll);
|
||||
|
|
Loading…
Reference in a new issue