]> Gentwo Git Trees - linux/.git/commitdiff
regulator: bd71828: Constify pointers to 'regulator_desc' wrap struct
authorKrzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Wed, 26 Nov 2025 16:58:46 +0000 (17:58 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 26 Nov 2025 18:44:28 +0000 (18:44 +0000)
Pointer to 'struct regulator_desc' is a pointer to const and the
wrapping structure (container) is not being modified, thus entire syntax
can be replaced to preferred and safer container_of_const().

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Link: https://patch.msgid.link/20251126-container-of-const-regulator-v1-3-eeec378144d4@oss.qualcomm.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/bd71828-regulator.c

index dd871ffe979c37ffa2b6789744ba01ab39d1f615..87de87793fa18f7aabe8b03b475fd5d8bdb97504 100644 (file)
@@ -95,9 +95,9 @@ static int buck_set_hw_dvs_levels(struct device_node *np,
                                  const struct regulator_desc *desc,
                                  struct regulator_config *cfg)
 {
-       struct bd71828_regulator_data *data;
+       const struct bd71828_regulator_data *data;
 
-       data = container_of(desc, struct bd71828_regulator_data, desc);
+       data = container_of_const(desc, struct bd71828_regulator_data, desc);
 
        return rohm_regulator_set_dvs_levels(&data->dvs, np, desc, cfg->regmap);
 }