* [PATCH] leds: ss4200: Fix the wrong format specifier
@ 2024-11-11 6:58 Zhu Jun
2024-11-12 14:39 ` (subset) " Lee Jones
0 siblings, 1 reply; 2+ messages in thread
From: Zhu Jun @ 2024-11-11 6:58 UTC (permalink / raw)
To: pavel; +Cc: lee, linux-leds, linux-kernel, zhujun2
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: (subset) [PATCH] leds: ss4200: Fix the wrong format specifier
2024-11-11 6:58 [PATCH] leds: ss4200: Fix the wrong format specifier Zhu Jun
@ 2024-11-12 14:39 ` Lee Jones
0 siblings, 0 replies; 2+ messages in thread
From: Lee Jones @ 2024-11-12 14:39 UTC (permalink / raw)
To: pavel, Zhu Jun; +Cc: lee, linux-leds, linux-kernel
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 [李琼斯]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-11-12 14:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-11 6:58 [PATCH] leds: ss4200: Fix the wrong format specifier Zhu Jun
2024-11-12 14:39 ` (subset) " Lee Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox