stub: fix typo

This commit is contained in:
nikstur 2023-07-20 22:49:45 +02:00
parent 2a109c0121
commit ec210ff40d
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ const UEFI_PAGE_MASK: usize = (1 << UEFI_PAGE_BITS) - 1;
fn make_instruction_cache_coherent(memory: &[u8]) { fn make_instruction_cache_coherent(memory: &[u8]) {
use core::arch::asm; use core::arch::asm;
// Minimum cache line size is 16 bits per the CSSIDR_EL0 format. // Minimum cache line size is 16 bits per the CSSIDR_EL0 format.
// For simplicity, we issue flushes in this stride unconditonally. // For simplicity, we issue flushes in this stride unconditionally.
const CACHE_LINE_SIZE: usize = 16; const CACHE_LINE_SIZE: usize = 16;
// The start address gets rounded down, while the end address gets rounded up. // The start address gets rounded down, while the end address gets rounded up.