aboutsummaryrefslogtreecommitdiff
path: root/hw/ssi/xlnx-versal-ospi.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/ssi/xlnx-versal-ospi.c')
-rw-r--r--hw/ssi/xlnx-versal-ospi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ssi/xlnx-versal-ospi.c b/hw/ssi/xlnx-versal-ospi.c
index c762e0b..1a61679 100644
--- a/hw/ssi/xlnx-versal-ospi.c
+++ b/hw/ssi/xlnx-versal-ospi.c
@@ -837,7 +837,7 @@ static void ospi_do_ind_read(XlnxVersalOspi *s)
/* Continue to read flash until we run out of space in sram */
while (!ospi_ind_op_completed(op) &&
!fifo8_is_full(&s->rx_sram)) {
- /* Read reqested number of bytes, max bytes limited to size of sram */
+ /* Read requested number of bytes, max bytes limited to size of sram */
next_b = ind_op_next_byte(op);
end_b = next_b + fifo8_num_free(&s->rx_sram);
end_b = MIN(end_b, ind_op_end_byte(op));