Commit ef4a4e14 authored by Stefan Agner's avatar Stefan Agner Committed by Shawn Guo

ARM: dts: vfxxx: add missing reg properties

Add missing reg properties to AIPS bus and Cortex-A5's PMU unit.
This change avoids the following warnings:
 Warning (unit_address_vs_reg): Node /soc/aips-bus@40000000 has a unit
 name, but no reg property
 Warning (unit_address_vs_reg): Node /soc/aips-bus@40080000 has a unit
 name, but no reg property
 Warning (unit_address_vs_reg): Node /soc/aips-bus@40080000/pmu@40089000
 has a unit name, but no reg property
Signed-off-by: default avatarStefan Agner <stefan@agner.ch>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 6d20b24a
...@@ -81,6 +81,7 @@ pmu@40089000 { ...@@ -81,6 +81,7 @@ pmu@40089000 {
compatible = "arm,cortex-a5-pmu"; compatible = "arm,cortex-a5-pmu";
interrupts = <7 IRQ_TYPE_LEVEL_HIGH>; interrupts = <7 IRQ_TYPE_LEVEL_HIGH>;
interrupt-affinity = <&a5_cpu>; interrupt-affinity = <&a5_cpu>;
reg = <0x40089000 0x1000>;
}; };
}; };
......
...@@ -95,6 +95,7 @@ aips0: aips-bus@40000000 { ...@@ -95,6 +95,7 @@ aips0: aips-bus@40000000 {
compatible = "fsl,aips-bus", "simple-bus"; compatible = "fsl,aips-bus", "simple-bus";
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
reg = <0x40000000 0x00070000>;
ranges; ranges;
mscm_cpucfg: cpucfg@40001000 { mscm_cpucfg: cpucfg@40001000 {
...@@ -481,6 +482,7 @@ aips1: aips-bus@40080000 { ...@@ -481,6 +482,7 @@ aips1: aips-bus@40080000 {
compatible = "fsl,aips-bus", "simple-bus"; compatible = "fsl,aips-bus", "simple-bus";
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
reg = <0x40080000 0x0007f000>;
ranges; ranges;
edma1: dma-controller@40098000 { edma1: dma-controller@40098000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment