diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-06-03 19:57:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-06-03 19:57:25 -0700 |
commit | 77d4d3609cd2dd613b6f4c3162616a944d3aeb0b (patch) | |
tree | d60f15ab23e64d70ec04f40c4bcd7980aff91936 /Documentation | |
parent | 1f952675835bfe18d6ae494a5581724d68c52352 (diff) | |
parent | 28cbc2d4c54c09a427b18a1604740efb6b2cc2d6 (diff) | |
download | linux-stable-77d4d3609cd2dd613b6f4c3162616a944d3aeb0b.tar.gz linux-stable-77d4d3609cd2dd613b6f4c3162616a944d3aeb0b.tar.bz2 linux-stable-77d4d3609cd2dd613b6f4c3162616a944d3aeb0b.zip |
Merge tag 'regulator-fix-v5.19-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
Pull regulator fix from Mark Brown:
"One fix that came in during the merge window, fixing an error in the
examples in the DT binding documentation for mt6315"
* tag 'regulator-fix-v5.19-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator:
regulator: mt6315-regulator: fix invalid allowed mode
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml b/Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml index 5d2d989de893..37402c370fbb 100644 --- a/Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml +++ b/Documentation/devicetree/bindings/regulator/mt6315-regulator.yaml @@ -55,7 +55,7 @@ examples: regulator-min-microvolt = <300000>; regulator-max-microvolt = <1193750>; regulator-enable-ramp-delay = <256>; - regulator-allowed-modes = <0 1 2 4>; + regulator-allowed-modes = <0 1 2>; }; vbuck3 { @@ -63,7 +63,7 @@ examples: regulator-min-microvolt = <300000>; regulator-max-microvolt = <1193750>; regulator-enable-ramp-delay = <256>; - regulator-allowed-modes = <0 1 2 4>; + regulator-allowed-modes = <0 1 2>; }; }; }; |