diff options
author | Rob Herring <robh@kernel.org> | 2022-12-06 04:43:43 +0300 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2022-12-27 05:57:42 +0300 |
commit | 5b2ad5acaf5aa8a1ff441665967cf728a46ac967 (patch) | |
tree | ddcebeb58b59c76ae53789ca7b4f49efc0ec5a2b /Documentation/devicetree/bindings/opp | |
parent | 1b929c02afd37871d5afb9d498426f83432e71c2 (diff) | |
download | linux-5b2ad5acaf5aa8a1ff441665967cf728a46ac967.tar.xz |
dt-bindings: opp: opp-v2-kryo-cpu: Add missing 'cache-unified' property in example
The examples' cache nodes are incomplete as 'cache-unified' is a
required cache property for unified caches which an L2 cache certainly
is.
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'Documentation/devicetree/bindings/opp')
-rw-r--r-- | Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml b/Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml index 60cf3cbde4c5..b4947b326773 100644 --- a/Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml +++ b/Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml @@ -106,6 +106,7 @@ examples: L2_0: l2-cache { compatible = "cache"; cache-level = <2>; + cache-unified; }; }; @@ -140,6 +141,7 @@ examples: L2_1: l2-cache { compatible = "cache"; cache-level = <2>; + cache-unified; }; }; |