mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
spi: spi-mem: Fix inverted logic in op sanity check
On r8a7791/koelsch:
m25p80 spi0.0: error -22 reading 9f
m25p80: probe of spi0.0 failed with error -22
Apparently the logic in spi_mem_check_op() is wrong, rejecting the
spi-mem operation if any buswidth is valid, instead of invalid.
Fixes: 380583227c
("spi: spi-mem: Add extra sanity checks on the op param")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
73569a5095
commit
aea3877e24
@ -169,10 +169,10 @@ static int spi_mem_check_op(const struct spi_mem_op *op)
|
|||||||
(op->data.nbytes && !op->data.buswidth))
|
(op->data.nbytes && !op->data.buswidth))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (spi_mem_buswidth_is_valid(op->cmd.buswidth) ||
|
if (!spi_mem_buswidth_is_valid(op->cmd.buswidth) ||
|
||||||
spi_mem_buswidth_is_valid(op->addr.buswidth) ||
|
!spi_mem_buswidth_is_valid(op->addr.buswidth) ||
|
||||||
spi_mem_buswidth_is_valid(op->dummy.buswidth) ||
|
!spi_mem_buswidth_is_valid(op->dummy.buswidth) ||
|
||||||
spi_mem_buswidth_is_valid(op->data.buswidth))
|
!spi_mem_buswidth_is_valid(op->data.buswidth))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user