Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a44b0f5e authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Bryan Wu
Browse files

leds: pca963x: Add missing initialiation of struct led_info.flags



Only the name and default_trigger fields are initialized.
Other fields (currently flags only) contain random stack data.
Pre-initialize the led structure completely to fix this.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarBryan Wu <cooloney@gmail.com>
parent 9647507a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -289,7 +289,7 @@ pca963x_dt_init(struct i2c_client *client, struct pca963x_chipdef *chip)
		return ERR_PTR(-ENOMEM);

	for_each_child_of_node(np, child) {
		struct led_info led;
		struct led_info led = {};
		u32 reg;
		int res;