projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40b7d5c
)
mtd: spi-nor: Print debug message when the read back test fails
author
Tudor Ambarus
<tudor.ambarus@microchip.com>
Sat, 2 Nov 2019 11:23:44 +0000
(11:23 +0000)
committer
Tudor Ambarus
<tudor.ambarus@microchip.com>
Thu, 7 Nov 2019 06:18:28 +0000
(08:18 +0200)
Demystify where the EIO error occurs.
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Reviewed-by: Vignesh Raghavendra <vigneshr@ti.com>
drivers/mtd/spi-nor/spi-nor.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/spi-nor/spi-nor.c
b/drivers/mtd/spi-nor/spi-nor.c
index
4616eb4
..
9960e09
100644
(file)
--- a/
drivers/mtd/spi-nor/spi-nor.c
+++ b/
drivers/mtd/spi-nor/spi-nor.c
@@
-974,7
+974,12
@@
static int spi_nor_write_sr_and_check(struct spi_nor *nor, u8 status_new)
if (ret)
return ret;
- return (nor->bouncebuf[0] != status_new) ? -EIO : 0;
+ if (nor->bouncebuf[0] != status_new) {
+ dev_dbg(nor->dev, "SR: read back test failed\n");
+ return -EIO;
+ }
+
+ return 0;
}
/**