This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: radio-shark2: Avoid led_names truncations
Author:  Ricardo Ribalda <[email protected]>
Date:    Mon Mar 25 14:50:24 2024 +0000

Increase the size of led_names so it can fit any valid v4l2 device name.

Fixes:
drivers/media/radio/radio-shark2.c:197:17: warning: ā€˜%s’ directive output may 
be truncated writing up to 35 bytes into a region of size 32 
[-Wformat-truncation=]

Signed-off-by: Ricardo Ribalda <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>

 drivers/media/radio/radio-shark2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

---

diff --git a/drivers/media/radio/radio-shark2.c 
b/drivers/media/radio/radio-shark2.c
index f1c5c0a6a335..e3e6aa87fe08 100644
--- a/drivers/media/radio/radio-shark2.c
+++ b/drivers/media/radio/radio-shark2.c
@@ -62,7 +62,7 @@ struct shark_device {
 #ifdef SHARK_USE_LEDS
        struct work_struct led_work;
        struct led_classdev leds[NO_LEDS];
-       char led_names[NO_LEDS][32];
+       char led_names[NO_LEDS][64];
        atomic_t brightness[NO_LEDS];
        unsigned long brightness_new;
 #endif

Reply via email to