Vasily Galkin has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/77529?usp=email )
Change subject: spi25_statusreg: add verbose output on status registers read results ......................................................................
spi25_statusreg: add verbose output on status registers read results
Useful during enabling/debugging WP operations on various SPI chips
Signed-off-by: Vasily Galkin galkin-vv@ya.ru Change-Id: Ibc8e9229ab5d6578479564d11cc7aff9442e24ad --- M spi25_statusreg.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/29/77529/1
diff --git a/spi25_statusreg.c b/spi25_statusreg.c index fa276f7..bb56ee1 100644 --- a/spi25_statusreg.c +++ b/spi25_statusreg.c @@ -262,6 +262,7 @@ }
*value = readarr[0]; + msg_cspew("%s: read_cmd 0x%02x returned 0x%02x\n", __func__, read_cmd, readarr[0]); return 0; }