regulator: fan53880: Fix vsel_mask setting for FAN53880_BUCK
authorAxel Lin <axel.lin@ingics.com>
Mon, 7 Jun 2021 14:29:07 +0000 (22:29 +0800)
committerMark Brown <broonie@kernel.org>
Tue, 8 Jun 2021 12:37:47 +0000 (13:37 +0100)
According to the datasheet:
REGISTER DETAILS − 0x02 BUCK, BUCK_OUT is BIT0 ~ BIT7.

So vsel_mask for FAN53880_BUCK should be 0xFF.

Fixes: e6dea51e2d41 ("regulator: fan53880: Add initial support")
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Link: https://lore.kernel.org/r/20210607142907.1599905-1-axel.lin@ingics.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/fan53880.c

index d49f10ac222d59f70ff098d8eb8f41f4f97900ff..d7e34e9188c7d64a98684f6200a3d2b2793d92a4 100644 (file)
@@ -77,7 +77,7 @@ static const struct regulator_desc fan53880_regulators[] = {
                },
                .n_linear_ranges = 2,
                .vsel_reg =        FAN53880_BUCKVOUT,
-               .vsel_mask =       0x7f,
+               .vsel_mask =       0xff,
                .enable_reg =      FAN53880_ENABLE,
                .enable_mask =     0x10,
                .enable_time =     480,