kern: correct flushing of init arguments

This commit is contained in:
Michael Scire 2020-08-11 17:09:22 -07:00
parent f02868d886
commit 4a50b00cab
2 changed files with 0 additions and 4 deletions

View File

@ -26,6 +26,5 @@ namespace ams::kern::init {
KPhysicalAddress GetInitArgumentsAddress(s32 core_id);
void SetInitArguments(s32 core_id, KPhysicalAddress address, uintptr_t arg);
void StoreInitArguments();
}

View File

@ -259,9 +259,6 @@ namespace ams::kern {
/* Setup the InitArguments. */
SetInitArguments(static_cast<s32>(i), core_local_region_start_phys[i], GetInteger(core_l1_ttbr1_phys[i]));
}
/* Ensure the InitArguments are flushed to cache. */
StoreInitArguments();
}
void SetupPoolPartitionMemoryRegions() {