diff mbox series

[v1] hwrng: histb-rng: Fix the wrong format specifier

Message ID 20241009064244.6420-1-zhujun2@cmss.chinamobile.com
State New
Headers show
Series [v1] hwrng: histb-rng: Fix the wrong format specifier | expand

Commit Message

Zhu Jun Oct. 9, 2024, 6:42 a.m. UTC
The format specifier of "unsigned int" in sprintf() should be "%u", not
"%d".

Signed-off-by: Zhu Jun <zhujun2@cmss.chinamobile.com>
---
Changes:
v1:fix the subject line, it has to be in the subsystem style

 drivers/char/hw_random/histb-rng.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Herbert Xu Oct. 19, 2024, 11:57 a.m. UTC | #1
On Tue, Oct 08, 2024 at 11:42:44PM -0700, Zhu Jun wrote:
> The format specifier of "unsigned int" in sprintf() should be "%u", not
> "%d".
> 
> Signed-off-by: Zhu Jun <zhujun2@cmss.chinamobile.com>
> ---
> Changes:
> v1:fix the subject line, it has to be in the subsystem style
> 
>  drivers/char/hw_random/histb-rng.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Patch applied.  Thanks.
diff mbox series

Patch

diff --git a/drivers/char/hw_random/histb-rng.c b/drivers/char/hw_random/histb-rng.c
index f652e1135e4b..1b91e88cc4c0 100644
--- a/drivers/char/hw_random/histb-rng.c
+++ b/drivers/char/hw_random/histb-rng.c
@@ -89,7 +89,7 @@  depth_show(struct device *dev, struct device_attribute *attr, char *buf)
 	struct histb_rng_priv *priv = dev_get_drvdata(dev);
 	void __iomem *base = priv->base;
 
-	return sprintf(buf, "%d\n", histb_rng_get_depth(base));
+	return sprintf(buf, "%u\n", histb_rng_get_depth(base));
 }
 
 static ssize_t