diff mbox series

[2/3] spi: sprd: Make sure offset not equal to slave address size

Message ID 20210824070212.2089255-2-zhang.lyra@gmail.com (mailing list archive)
State Accepted
Commit 2b961c51f4d35c45116b21936b563cbb78fba540
Headers show
Series [1/3] spi: sprd: Pass offset instead of physical address to adi_read/_write() | expand

Commit Message

Chunyan Zhang Aug. 24, 2021, 7:02 a.m. UTC
From: Chunyan Zhang <chunyan.zhang@unisoc.com>

The slave register offset shouldn't equal to the max slave address
which ADI can support to access.

Signed-off-by: Chunyan Zhang <chunyan.zhang@unisoc.com>
---
 drivers/spi/spi-sprd-adi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/spi/spi-sprd-adi.c b/drivers/spi/spi-sprd-adi.c
index abdad1ea7b38..06af519c0b21 100644
--- a/drivers/spi/spi-sprd-adi.c
+++ b/drivers/spi/spi-sprd-adi.c
@@ -119,7 +119,7 @@  struct sprd_adi {
 
 static int sprd_adi_check_addr(struct sprd_adi *sadi, u32 reg)
 {
-	if (reg > ADI_SLAVE_ADDR_SIZE) {
+	if (reg >= ADI_SLAVE_ADDR_SIZE) {
 		dev_err(sadi->dev,
 			"slave address offset is incorrect, reg = 0x%x\n",
 			reg);