From 2a7756f365f4ec09f5cd6e2c60b4548a95a937e4 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 12:17:20 -0500 Subject: [PATCH] spelling: accesses Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/drivers/stm32f412/qspi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/drivers/stm32f412/qspi.c b/src/fw/drivers/stm32f412/qspi.c index 00bbca2d..576edd24 100644 --- a/src/fw/drivers/stm32f412/qspi.c +++ b/src/fw/drivers/stm32f412/qspi.c @@ -260,7 +260,7 @@ void qspi_indirect_read_dma(QSPIPort *dev, uint8_t instruction, uint32_t start_a // So this function is broken into 3 parts: // 1. Do reads 1 byte at a time until buffer_ptr is word-aligned // 2. Do 32-bit DMA transfers for as much as possible - // 3. Do reads 1 bytes at a time to deal with non-aligned acceses at the end + // 3. Do reads 1 bytes at a time to deal with non-aligned accesses at the end const uint32_t word_mask = dcache_alignment_mask_minimum(QSPI_DMA_READ_WORD_SIZE); const uintptr_t buffer_address = (uintptr_t)buffer;