[PATCH] leds: ss4200: Fix the wrong format specifier

Zhu Jun posted 1 patch 1 week, 5 days ago
drivers/leds/leds-ss4200.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] leds: ss4200: Fix the wrong format specifier
Posted by Zhu Jun 1 week, 5 days ago
The format specifier of "signed int" in sprintf() should be "%d", not
"%u".

Signed-off-by: Zhu Jun <zhujun2@cmss.chinamobile.com>
---
 drivers/leds/leds-ss4200.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/leds/leds-ss4200.c b/drivers/leds/leds-ss4200.c
index 2ef9fc7371bd..f24ca75c7cb1 100644
--- a/drivers/leds/leds-ss4200.c
+++ b/drivers/leds/leds-ss4200.c
@@ -451,7 +451,7 @@ static ssize_t blink_show(struct device *dev,
 	int blinking = 0;
 	if (nasgpio_led_get_attr(led, GPO_BLINK))
 		blinking = 1;
-	return sprintf(buf, "%u\n", blinking);
+	return sprintf(buf, "%d\n", blinking);
 }
 
 static ssize_t blink_store(struct device *dev,
-- 
2.17.1
Re: (subset) [PATCH] leds: ss4200: Fix the wrong format specifier
Posted by Lee Jones 1 week, 4 days ago
On Sun, 10 Nov 2024 22:58:09 -0800, Zhu Jun wrote:
> The format specifier of "signed int" in sprintf() should be "%d", not
> "%u".
> 
> 

Applied, thanks!

[1/1] leds: ss4200: Fix the wrong format specifier
      commit: e8501858035b1f95468da525e7357c8c33811b88

--
Lee Jones [李琼斯]