diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2017-01-18 09:13:20 +0000 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-02-07 15:06:45 +0100 |
commit | 1defa60e5dc43eccc6cd50deb8f39b5ee5c52463 (patch) | |
tree | 0f1a73e96219a4b843d35efd94d382a6c481406e | |
parent | eb02c2a1fa7f01cf68a4465c65527bd1a7d63ac3 (diff) | |
download | linux-1defa60e5dc43eccc6cd50deb8f39b5ee5c52463.tar.gz linux-1defa60e5dc43eccc6cd50deb8f39b5ee5c52463.tar.bz2 linux-1defa60e5dc43eccc6cd50deb8f39b5ee5c52463.zip |
dt-bindings: arm,gic: Fix binding example for a virt-capable GIC
The joys of copy/paste: the example of a virtualization capable GIC
in the DT binding was wrong, and propagated to dozens of platforms.
By having a GICC region that is only 4kB (instead of 8kB), we
end-up not being able to access the GICC_DIR register which is on
the second page.
Oh well. Let's fix the source of the crap before tackling individual
offenders.
Acked-by: Tony Lindgren <tony@atomide.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt b/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt index 5393e2a45a42..560d8a727b8f 100644 --- a/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt +++ b/Documentation/devicetree/bindings/interrupt-controller/arm,gic.txt @@ -111,7 +111,7 @@ Example: #interrupt-cells = <3>; interrupt-controller; reg = <0x2c001000 0x1000>, - <0x2c002000 0x1000>, + <0x2c002000 0x2000>, <0x2c004000 0x2000>, <0x2c006000 0x2000>; interrupts = <1 9 0xf04>; |