When using interrupt-maps, the size of a map entry is #address-cells + #interrupt-cells for the parent interrupt controller. For the ARM GIC address-cells should be 0 as this is not used.
This patch fixes the example by correctly specifying #address-cells = 0. Signed-off-by: Tim Harvey <[email protected]> Cc: Jason Gunthorpe <[email protected]> Cc: Jingoo Han <[email protected]> Cc: Lucas Stach <[email protected]> Cc: Mark Rutland <[email protected]> Cc: linux-samsung-soc <[email protected]> Cc: Richard Zhu <[email protected]> Cc: Sascha Hauer <[email protected]> Cc: Arnd Bergmann <[email protected]> Cc: Stephen Warren <[email protected]> Cc: Bjorn Helgaas <[email protected]> Cc: Simon Horman <[email protected]> Cc: Thierry Reding <[email protected]> Cc: Ben Dooks <[email protected]> Cc: linux-tegra <[email protected]> Cc: Kukjin Kim <[email protected]> Cc: Shawn Guo <[email protected]> Cc: Grant Likely <[email protected]> --- Documentation/devicetree/bindings/arm/gic.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/arm/gic.txt b/Documentation/devicetree/bindings/arm/gic.txt index bae0d87..b59ff1f 100644 --- a/Documentation/devicetree/bindings/arm/gic.txt +++ b/Documentation/devicetree/bindings/arm/gic.txt @@ -55,7 +55,7 @@ Example: intc: interrupt-controller@fff11000 { compatible = "arm,cortex-a9-gic"; #interrupt-cells = <3>; - #address-cells = <1>; + #address-cells = <0>; interrupt-controller; reg = <0xfff11000 0x1000>, <0xfff10100 0x100>; -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
