spi: omap-100k: Fix the length judgment problem
[ Upstream commit e7a1a3abea
]
word_len should be checked in the omap1_spi100k_setup_transfer
function to see if it exceeds 32.
Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
Link: https://lore.kernel.org/r/1619695248-39045-1-git-send-email-tiantao6@hisilicon.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
afc37630a1
commit
d6518e0281
@ -242,7 +242,7 @@ static int omap1_spi100k_setup_transfer(struct spi_device *spi,
|
|||||||
else
|
else
|
||||||
word_len = spi->bits_per_word;
|
word_len = spi->bits_per_word;
|
||||||
|
|
||||||
if (spi->bits_per_word > 32)
|
if (word_len > 32)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
cs->word_len = word_len;
|
cs->word_len = word_len;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user