Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

leds: rgb: leds-mt6370-rgb: Fix uninitialized variable 'ret' in mt6370_mc_pattern_clear

Fix the uninitialized symbol 'ret' in the function mt6370_mc_pattern_clear
to resolve the following warning:
drivers/leds/rgb/leds-mt6370-rgb.c:604 mt6370_mc_pattern_clear()
error: uninitialized symbol 'ret'.
Initialize 'ret' to 0 to prevent undefined behavior from uninitialized
access.

Signed-off-by: Suraj Sonawane <surajsonawane0215@gmail.com>
Link: https://lore.kernel.org/r/20241016042142.8088-1-surajsonawane0215@gmail.com
Signed-off-by: Lee Jones <lee@kernel.org>

authored by

Suraj Sonawane and committed by
Lee Jones
6cbf5c99 681d5fa6

+1 -1
+1 -1
drivers/leds/rgb/leds-mt6370-rgb.c
··· 587 587 struct mt6370_led *led = container_of(mccdev, struct mt6370_led, mc); 588 588 struct mt6370_priv *priv = led->priv; 589 589 struct mc_subled *subled; 590 - int i, ret; 590 + int i, ret = 0; 591 591 592 592 mutex_lock(&led->priv->lock); 593 593