regulator: rpi-panel: Ensure the backlight is off during probe.
authorDave Stevenson <dave.stevenson@raspberrypi.com>
Wed, 8 Sep 2021 14:41:18 +0000 (15:41 +0100)
committerDom Cobley <popcornmix@gmail.com>
Mon, 21 Mar 2022 16:04:22 +0000 (16:04 +0000)
The initial state of the Atmel is not defined, so ensure the
backlight PWM is set to 0 by default.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
drivers/regulator/rpi-panel-attiny-regulator.c

index a4af7ad..b3629a1 100644 (file)
@@ -250,6 +250,7 @@ static int attiny_i2c_probe(struct i2c_client *i2c,
 
        regmap_write(regmap, REG_POWERON, 0);
        msleep(30);
+       regmap_write(regmap, REG_PWM, 0);
 
        config.dev = &i2c->dev;
        config.regmap = regmap;