projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7234d74
)
spi: cadence-quadspi: Fix cancel the indirect read mask
author
Hongbin Ji
<jhb_ee@163.com>
Wed, 22 Feb 2023 09:21:28 +0000
(17:21 +0800)
committer
Mark Brown
<broonie@kernel.org>
Thu, 23 Feb 2023 11:40:16 +0000
(11:40 +0000)
This is to cancel the indirect read transfer process,
so should be use CQSPI_REG_INDIRECTRD_CANCEL_MASK
Signed-off-by: Hongbin Ji <jhb_ee@163.com>
Link:
https://lore.kernel.org/r/20230222092128.4237-1-jhb_ee@163.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-cadence-quadspi.c
patch
|
blob
|
history
diff --git
a/drivers/spi/spi-cadence-quadspi.c
b/drivers/spi/spi-cadence-quadspi.c
index 2954c06a7f57f64a71ccd19db83c77ef3747de35..64b6a460d739b778fad3703fccfe3fb4e688103e 100644
(file)
--- a/
drivers/spi/spi-cadence-quadspi.c
+++ b/
drivers/spi/spi-cadence-quadspi.c
@@
-786,7
+786,7
@@
failrd:
writel(0, reg_base + CQSPI_REG_IRQMASK);
/* Cancel the indirect read */
- writel(CQSPI_REG_INDIRECT
WR
_CANCEL_MASK,
+ writel(CQSPI_REG_INDIRECT
RD
_CANCEL_MASK,
reg_base + CQSPI_REG_INDIRECTRD);
return ret;
}