diff options
author | Moritz Fischer <moritz.fischer@ettus.com> | 2015-11-09 10:51:51 -0800 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2015-12-14 09:48:39 +0100 |
commit | 400b6a0cbef55d1ae32808eaa1ef1c28820bf6ac (patch) | |
tree | 4cca63f5570a00f0be4bee937277ad94e17e778d | |
parent | bc5ba9b98435bf76d92e0954da1784695aa449f1 (diff) | |
download | op-kernel-dev-400b6a0cbef55d1ae32808eaa1ef1c28820bf6ac.zip op-kernel-dev-400b6a0cbef55d1ae32808eaa1ef1c28820bf6ac.tar.gz |
ARM: dt: zynq: Add labels to cpu nodes to allow overriding OPPs.
By adding labels to the cpu nodes in the dtsi, a dts that
includes it can change the OPPs by referencing the cpu0
through the label.
Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
Reviewed-by: Sören Brinkmann <soren.brinkmann@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
-rw-r--r-- | arch/arm/boot/dts/zynq-7000.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/zynq-7000.dtsi b/arch/arm/boot/dts/zynq-7000.dtsi index 59a35df..f283ff0 100644 --- a/arch/arm/boot/dts/zynq-7000.dtsi +++ b/arch/arm/boot/dts/zynq-7000.dtsi @@ -19,7 +19,7 @@ #address-cells = <1>; #size-cells = <0>; - cpu@0 { + cpu0: cpu@0 { compatible = "arm,cortex-a9"; device_type = "cpu"; reg = <0>; @@ -33,7 +33,7 @@ >; }; - cpu@1 { + cpu1: cpu@1 { compatible = "arm,cortex-a9"; device_type = "cpu"; reg = <1>; |