summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ports/stm32/qspi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/qspi.c b/ports/stm32/qspi.c
index b82d3d81c..5ead66f4e 100644
--- a/ports/stm32/qspi.c
+++ b/ports/stm32/qspi.c
@@ -318,7 +318,7 @@ STATIC void qspi_read_cmd_qaddr_qdata(void *self_in, uint8_t cmd, uint32_t addr,
;
QUADSPI->ABR = 0; // alternate byte: disable continuous read mode
- QUADSPI->AR = addr; // addres to read from
+ QUADSPI->AR = addr; // address to read from
// Read in the data 4 bytes at a time if dest is aligned
if (((uintptr_t)dest & 3) == 0) {