Skip to content

Commit 8c02456

Browse files
storulfrobherring
authored andcommitted
dt-bindings: power: Fix example for power-domain
The change that converted the domain-idle-states DT bindings to the json-schema, forgot to update the corresponding example for the power-domain binding. Let's fix it. Fixes: 3261227 ("dt-bindings: power: Convert domain-idle-states bindings to json-schema") Signed-off-by: Ulf Hansson <[email protected]> Signed-off-by: Rob Herring <[email protected]>
1 parent b203bb5 commit 8c02456

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Documentation/devicetree/bindings/power/power-domain.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -114,18 +114,18 @@ examples:
114114
domain-idle-states = <&DOMAIN_PWR_DN>;
115115
};
116116
117-
DOMAIN_RET: state@0 {
118-
compatible = "domain-idle-state";
119-
reg = <0x0 0x0>;
120-
entry-latency-us = <1000>;
121-
exit-latency-us = <2000>;
122-
min-residency-us = <10000>;
123-
};
124-
125-
DOMAIN_PWR_DN: state@1 {
126-
compatible = "domain-idle-state";
127-
reg = <0x1 0x0>;
128-
entry-latency-us = <5000>;
129-
exit-latency-us = <8000>;
130-
min-residency-us = <7000>;
117+
domain-idle-states {
118+
DOMAIN_RET: domain-retention {
119+
compatible = "domain-idle-state";
120+
entry-latency-us = <1000>;
121+
exit-latency-us = <2000>;
122+
min-residency-us = <10000>;
123+
};
124+
125+
DOMAIN_PWR_DN: domain-pwr-dn {
126+
compatible = "domain-idle-state";
127+
entry-latency-us = <5000>;
128+
exit-latency-us = <8000>;
129+
min-residency-us = <7000>;
130+
};
131131
};

0 commit comments

Comments
 (0)