dt-bindings: arm: psci: change labels to lower-case in example

DTS coding style expects labels to be lowercase, so adjust the example
code.  No functional impact.

Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20250501150934.77317-3-krzysztof.kozlowski@linaro.org
Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
This commit is contained in:
Krzysztof Kozlowski 2025-05-01 17:09:35 +02:00 committed by Rob Herring (Arm)
parent 10fc30eaf3
commit 3346f751df
1 changed files with 15 additions and 15 deletions

View File

@ -191,27 +191,27 @@ examples:
#size-cells = <0>; #size-cells = <0>;
#address-cells = <1>; #address-cells = <1>;
CPU0: cpu@0 { cpu@0 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a53"; compatible = "arm,cortex-a53";
reg = <0x0>; reg = <0x0>;
enable-method = "psci"; enable-method = "psci";
power-domains = <&CPU_PD0>; power-domains = <&cpu_pd0>;
power-domain-names = "psci"; power-domain-names = "psci";
}; };
CPU1: cpu@1 { cpu@1 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a53"; compatible = "arm,cortex-a53";
reg = <0x100>; reg = <0x100>;
enable-method = "psci"; enable-method = "psci";
power-domains = <&CPU_PD1>; power-domains = <&cpu_pd1>;
power-domain-names = "psci"; power-domain-names = "psci";
}; };
idle-states { idle-states {
CPU_PWRDN: cpu-power-down { cpu_pwrdn: cpu-power-down {
compatible = "arm,idle-state"; compatible = "arm,idle-state";
arm,psci-suspend-param = <0x0000001>; arm,psci-suspend-param = <0x0000001>;
entry-latency-us = <10>; entry-latency-us = <10>;
@ -222,7 +222,7 @@ examples:
domain-idle-states { domain-idle-states {
CLUSTER_RET: cluster-retention { cluster_ret: cluster-retention {
compatible = "domain-idle-state"; compatible = "domain-idle-state";
arm,psci-suspend-param = <0x1000011>; arm,psci-suspend-param = <0x1000011>;
entry-latency-us = <500>; entry-latency-us = <500>;
@ -230,7 +230,7 @@ examples:
min-residency-us = <2000>; min-residency-us = <2000>;
}; };
CLUSTER_PWRDN: cluster-power-down { cluster_pwrdn: cluster-power-down {
compatible = "domain-idle-state"; compatible = "domain-idle-state";
arm,psci-suspend-param = <0x1000031>; arm,psci-suspend-param = <0x1000031>;
entry-latency-us = <2000>; entry-latency-us = <2000>;
@ -244,21 +244,21 @@ examples:
compatible = "arm,psci-1.0"; compatible = "arm,psci-1.0";
method = "smc"; method = "smc";
CPU_PD0: power-domain-cpu0 { cpu_pd0: power-domain-cpu0 {
#power-domain-cells = <0>; #power-domain-cells = <0>;
domain-idle-states = <&CPU_PWRDN>; domain-idle-states = <&cpu_pwrdn>;
power-domains = <&CLUSTER_PD>; power-domains = <&cluster_pd>;
}; };
CPU_PD1: power-domain-cpu1 { cpu_pd1: power-domain-cpu1 {
#power-domain-cells = <0>; #power-domain-cells = <0>;
domain-idle-states = <&CPU_PWRDN>; domain-idle-states = <&cpu_pwrdn>;
power-domains = <&CLUSTER_PD>; power-domains = <&cluster_pd>;
}; };
CLUSTER_PD: power-domain-cluster { cluster_pd: power-domain-cluster {
#power-domain-cells = <0>; #power-domain-cells = <0>;
domain-idle-states = <&CLUSTER_RET>, <&CLUSTER_PWRDN>; domain-idle-states = <&cluster_ret>, <&cluster_pwrdn>;
}; };
}; };
... ...