backlight: mp3309c: Fully initialize backlight_properties during probe
authorDaniel Thompson <daniel.thompson@linaro.org>
Tue, 20 Feb 2024 15:35:27 +0000 (15:35 +0000)
committerLee Jones <lee@kernel.org>
Thu, 7 Mar 2024 09:03:29 +0000 (09:03 +0000)
props is stack allocated and, although this driver initializes all the
fields that are not "owned" by the framework, we'd still like to ensure
it is zeroed to avoid problems from this driver if the fields change.

Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Link: https://lore.kernel.org/r/20240220153532.76613-5-daniel.thompson@linaro.org
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/video/backlight/mp3309c.c

index 708c053..c80a148 100644 (file)
@@ -357,6 +357,7 @@ static int mp3309c_probe(struct i2c_client *client)
        chip->pdata = pdata;
 
        /* Backlight properties */
+       memset(&props, 0, sizeof(struct backlight_properties));
        props.brightness = pdata->default_brightness;
        props.max_brightness = pdata->max_brightness;
        props.scale = BACKLIGHT_SCALE_LINEAR;