]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
regulator: tps6286x-regulator: Fix a copy & paste error
authorJisheng Zhang <jszhang@kernel.org>
Mon, 14 Jul 2025 01:04:56 +0000 (09:04 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 14 Jul 2025 13:44:05 +0000 (14:44 +0100)
The volatile_reg function is named as tps6287x_volatile_reg by mistake
when enabing the REGCACHE_MAPLE support.

Signed-off-by: Jisheng Zhang <jszhang@kernel.org>
Link: https://patch.msgid.link/20250714010456.4906-1-jszhang@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/tps6286x-regulator.c

index 778f169b0acc67242eba3a7d3c8a11bcee736a99..e29aab06bf79e9bc9254ea114b2d2ee23a63e303 100644 (file)
@@ -25,7 +25,7 @@
 #define TPS6286X_MAX_MV                1675
 #define TPS6286X_STEP_MV       5
 
-static bool tps6287x_volatile_reg(struct device *dev, unsigned int reg)
+static bool tps6286x_volatile_reg(struct device *dev, unsigned int reg)
 {
        return reg == TPS6286X_STATUS;
 }
@@ -34,7 +34,7 @@ static const struct regmap_config tps6286x_regmap_config = {
        .reg_bits = 8,
        .val_bits = 8,
        .cache_type = REGCACHE_MAPLE,
-       .volatile_reg = tps6287x_volatile_reg,
+       .volatile_reg = tps6286x_volatile_reg,
 };
 
 static int tps6286x_set_mode(struct regulator_dev *rdev, unsigned int mode)