projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
152ac60
)
spi: spi-sn-f-ospi: fix duplicate flag while assigning to mode_bits
author
Dhruva Gole
<d-gole@ti.com>
Thu, 23 Feb 2023 09:52:02 +0000
(15:22 +0530)
committer
Mark Brown
<broonie@kernel.org>
Thu, 23 Feb 2023 11:40:17 +0000
(11:40 +0000)
Replace the SPI_TX_OCTAL flag that appeared two time with SPI_RX_OCTAL
in the chain of '|' operators while assigning to mode_bits
Fixes: 1b74dd64c861 ("spi: Add Socionext F_OSPI SPI flash controller driver")
Reported-by: David Binderman <dcb314@hotmail.com>
Link:
https://lore.kernel.org/all/DB6P189MB0568F3BE9384315F5C8C1A3E9CA49@DB6P189MB0568.EURP189.PROD.OUTLOOK.COM/
Cc: stable@vger.kernel.org
Signed-off-by: Dhruva Gole <d-gole@ti.com>
Link:
https://lore.kernel.org/r/20230223095202.924626-1-d-gole@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-sn-f-ospi.c
patch
|
blob
|
history
diff --git
a/drivers/spi/spi-sn-f-ospi.c
b/drivers/spi/spi-sn-f-ospi.c
index 348c6e1edd38a67b683e4ceb873c79a4c16e779a..333b22dfd8dba879403f9d8fe0c8fdcb23017567 100644
(file)
--- a/
drivers/spi/spi-sn-f-ospi.c
+++ b/
drivers/spi/spi-sn-f-ospi.c
@@
-611,7
+611,7
@@
static int f_ospi_probe(struct platform_device *pdev)
return -ENOMEM;
ctlr->mode_bits = SPI_TX_DUAL | SPI_TX_QUAD | SPI_TX_OCTAL
- | SPI_RX_DUAL | SPI_RX_QUAD | SPI_
T
X_OCTAL
+ | SPI_RX_DUAL | SPI_RX_QUAD | SPI_
R
X_OCTAL
| SPI_MODE_0 | SPI_MODE_1 | SPI_LSB_FIRST;
ctlr->mem_ops = &f_ospi_mem_ops;
ctlr->bus_num = -1;