media: radio-shark2: Avoid led_names truncations
[ Upstream commit 1820e16a3019b6258e6009d34432946a6ddd0a90 ] 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 <ribalda@chromium.org> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
b86e70894c
commit
8a93e85d7c
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ struct shark_device {
|
||||||
#ifdef SHARK_USE_LEDS
|
#ifdef SHARK_USE_LEDS
|
||||||
struct work_struct led_work;
|
struct work_struct led_work;
|
||||||
struct led_classdev leds[NO_LEDS];
|
struct led_classdev leds[NO_LEDS];
|
||||||
char led_names[NO_LEDS][32];
|
char led_names[NO_LEDS][64];
|
||||||
atomic_t brightness[NO_LEDS];
|
atomic_t brightness[NO_LEDS];
|
||||||
unsigned long brightness_new;
|
unsigned long brightness_new;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue