aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/nvmem
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2021-05-07 19:02:48 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-05-14 13:39:50 +0200
commit20be064ec864086bca7a4eb62c772a397b44afb7 (patch)
tree1cf63f22b99adf1b062bc1c028d5fd509d5b6a44 /drivers/nvmem
parentuio: uio_aec: Use pci_iounmap instead of iounmap (diff)
downloadwireguard-linux-20be064ec864086bca7a4eb62c772a397b44afb7.tar.xz
wireguard-linux-20be064ec864086bca7a4eb62c772a397b44afb7.zip
nvmem: sprd: Fix an error message
'ret' is known to be 0 here. The expected error status is stored in 'status', so use it instead. Also change %d in %u, because status is an u32, not a int. Fixes: 096030e7f449 ("nvmem: sprd: Add Spreadtrum SoCs eFuse support") Acked-by: Chunyan Zhang <zhang.lyra@gmail.com> Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://lore.kernel.org/r/5bc44aace2fe7e1c91d8b35c8fe31e7134ceab2c.1620406852.git.christophe.jaillet@wanadoo.fr Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/nvmem')
-rw-r--r--drivers/nvmem/sprd-efuse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvmem/sprd-efuse.c b/drivers/nvmem/sprd-efuse.c
index 59523245db8a..4f1fcbfec394 100644
--- a/drivers/nvmem/sprd-efuse.c
+++ b/drivers/nvmem/sprd-efuse.c
@@ -234,7 +234,7 @@ static int sprd_efuse_raw_prog(struct sprd_efuse *efuse, u32 blk, bool doub,
status = readl(efuse->base + SPRD_EFUSE_ERR_FLAG);
if (status) {
dev_err(efuse->dev,
- "write error status %d of block %d\n", ret, blk);
+ "write error status %u of block %d\n", status, blk);
writel(SPRD_EFUSE_ERR_CLR_MASK,
efuse->base + SPRD_EFUSE_ERR_CLR);