diff options
author | Ian Campbell <Ian.Campbell@citrix.com> | 2013-11-25 04:40:37 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-12-01 22:06:56 -0500 |
commit | 16baeb307be115defb25df7f1582ed85ea48a4dc (patch) | |
tree | 47d52caa255dd3c2af2200b46e555a817ca34765 /arch/powerpc/boot | |
parent | 565c2f249a0cb549d419f4c92fb8642b404d42b5 (diff) |
powerpc/4xx: Fix warning in kilauea.dtb
Currently I see:
DTC arch/powerpc/boot/kilauea.dtb
Warning (reg_format): "reg" property in /plb/ppc4xx-msi@C10000000 has invalid length (12 bytes) (#address-cells == 1, #size-cells == 1)
It appears that unlike the other platforms handled by 3fb7933850fa
"powerpc/4xx: Adding PCIe MSI support" this platform does not use address-cells=2.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Josh Boyer <jwboyer@gmail.com>
Cc: Rupjyoti Sarmah <rsarmah@apm.com>
Cc: Tirumala R Marri <tmarri@apm.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: devicetree@vger.kernel.org (open list:OPEN FIRMWARE AND...)
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/boot')
-rw-r--r-- | arch/powerpc/boot/dts/kilauea.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/dts/kilauea.dts b/arch/powerpc/boot/dts/kilauea.dts index 1613d6e4049e..5ba7f01e2a29 100644 --- a/arch/powerpc/boot/dts/kilauea.dts +++ b/arch/powerpc/boot/dts/kilauea.dts | |||
@@ -406,7 +406,7 @@ | |||
406 | 406 | ||
407 | MSI: ppc4xx-msi@C10000000 { | 407 | MSI: ppc4xx-msi@C10000000 { |
408 | compatible = "amcc,ppc4xx-msi", "ppc4xx-msi"; | 408 | compatible = "amcc,ppc4xx-msi", "ppc4xx-msi"; |
409 | reg = < 0x0 0xEF620000 0x100>; | 409 | reg = <0xEF620000 0x100>; |
410 | sdr-base = <0x4B0>; | 410 | sdr-base = <0x4B0>; |
411 | msi-data = <0x00000000>; | 411 | msi-data = <0x00000000>; |
412 | msi-mask = <0x44440000>; | 412 | msi-mask = <0x44440000>; |