Unverified Commit 788915a2 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Mark Brown
Browse files

regulator: bd71815: Constify pointers to 'regulator_desc' wrap struct



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: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Link: https://patch.msgid.link/20251126-container-of-const-regulator-v1-2-eeec378144d4@oss.qualcomm.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent ac1530cd
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -173,9 +173,9 @@ static int set_hw_dvs_levels(struct device_node *np,
			     const struct regulator_desc *desc,
			     struct regulator_config *cfg)
{
	struct bd71815_regulator *data;
	const struct bd71815_regulator *data;

	data = container_of(desc, struct bd71815_regulator, desc);
	data = container_of_const(desc, struct bd71815_regulator, desc);
	return rohm_regulator_set_dvs_levels(data->dvs, np, desc, cfg->regmap);
}

@@ -195,10 +195,10 @@ static int buck12_set_hw_dvs_levels(struct device_node *np,
				    const struct regulator_desc *desc,
				    struct regulator_config *cfg)
{
	struct bd71815_regulator *data;
	const struct bd71815_regulator *data;
	int ret = 0, val;

	data = container_of(desc, struct bd71815_regulator, desc);
	data = container_of_const(desc, struct bd71815_regulator, desc);

	if (of_property_present(np, "rohm,dvs-run-voltage") ||
	    of_property_present(np, "rohm,dvs-suspend-voltage") ||