fusee-cpp: minor fixes (thanks @hexkyz)

This commit is contained in:
Michael Scire 2021-08-22 11:22:52 -07:00 committed by SciresM
parent 349a16ce39
commit 3b460e94d4
2 changed files with 4 additions and 4 deletions

View file

@ -153,7 +153,7 @@ namespace ams::nxboot {
CLK_RST_REG_BITS_VALUE(PLLM_BASE_PLLM_DIVN, params->PllMFeedbackDivider),
CLK_RST_REG_BITS_VALUE(PLLM_BASE_PLLM_DIVM, params->PllMInputDivider));
/* Wait 300us ffor stability. */
/* Wait 300us for stability. */
const auto stable_time = util::GetMicroSeconds() + 300;
while (true) {
if (reg::HasValue(CLKRST + CLK_RST_CONTROLLER_PLLM_BASE, CLK_RST_REG_BITS_ENUM(PLLM_BASE_PLLM_LOCK, LOCK))) {