diff options
author | Alexander Dahl <[email protected]> | 2024-09-26 11:03:56 +0200 |
---|---|---|
committer | Mark Brown <[email protected]> | 2024-10-01 12:07:53 +0100 |
commit | 162d9b5d2308c7e48efbc97d36babbf4d73b2c61 (patch) | |
tree | a687e8593dd8771772003a37cd5f7ffa9027dce9 | |
parent | 9852d85ec9d492ebef56dc5f229416c925758edc (diff) |
spi: atmel-quadspi: Fix wrong register value written to MR
aq->mr should go to MR, nothing else.
Fixes: 329ca3eed4a9 ("spi: atmel-quadspi: Avoid overwriting delay register settings")
Signed-off-by: Alexander Dahl <[email protected]>
Link: https://lore.kernel.org/linux-spi/[email protected]/T/#u
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/spi/atmel-quadspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/atmel-quadspi.c b/drivers/spi/atmel-quadspi.c index 4f288f07e38f..95cdfc28361e 100644 --- a/drivers/spi/atmel-quadspi.c +++ b/drivers/spi/atmel-quadspi.c @@ -377,7 +377,7 @@ static int atmel_qspi_set_cfg(struct atmel_qspi *aq, */ if (!(aq->mr & QSPI_MR_SMM)) { aq->mr |= QSPI_MR_SMM; - atmel_qspi_write(aq->scr, aq, QSPI_MR); + atmel_qspi_write(aq->mr, aq, QSPI_MR); } /* Clear pending interrupts */ |