regulator: dt-bindings: qcom,rpmh: clean up example indentation

Remove a line break and increase indentation of the continuation line
to avoid having the 'regulator-allowed-modes' example be reproduced
verbatim with four-spaces indentation (instead of a tab, which is still
too little) in devicetree sources.

Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Link: https://lore.kernel.org/r/20221116102054.4673-2-johan+linaro@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Johan Hovold 2022-11-16 11:20:53 +01:00 committed by Mark Brown
parent dd801b2265
commit b8dfb3bed5
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 4 additions and 6 deletions

View File

@ -412,9 +412,8 @@ examples:
regulator-min-microvolt = <1800000>; regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>; regulator-max-microvolt = <1800000>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>; regulator-initial-mode = <RPMH_REGULATOR_MODE_HPM>;
regulator-allowed-modes = regulator-allowed-modes = <RPMH_REGULATOR_MODE_LPM
<RPMH_REGULATOR_MODE_LPM RPMH_REGULATOR_MODE_HPM>;
RPMH_REGULATOR_MODE_HPM>;
regulator-allow-set-load; regulator-allow-set-load;
}; };
@ -431,9 +430,8 @@ examples:
bob { bob {
regulator-min-microvolt = <3312000>; regulator-min-microvolt = <3312000>;
regulator-max-microvolt = <3600000>; regulator-max-microvolt = <3600000>;
regulator-allowed-modes = regulator-allowed-modes = <RPMH_REGULATOR_MODE_AUTO
<RPMH_REGULATOR_MODE_AUTO RPMH_REGULATOR_MODE_HPM>;
RPMH_REGULATOR_MODE_HPM>;
regulator-initial-mode = <RPMH_REGULATOR_MODE_AUTO>; regulator-initial-mode = <RPMH_REGULATOR_MODE_AUTO>;
}; };
}; };