diff options
author | Jon Hunter <jonathanh@nvidia.com> | 2020-11-24 15:18:42 +0300 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2020-12-08 17:07:18 +0300 |
commit | d89886eb76f601b6cd78f96a1cebee073d12bf58 (patch) | |
tree | 15b8d06eb10bd5ddb179adfa3a01351616c90c4d | |
parent | 1e95c81104e32e9f46b5a6085fee7e6ced25cad9 (diff) | |
download | linux-d89886eb76f601b6cd78f96a1cebee073d12bf58.tar.xz |
dt-bindings: Correct GV11B GPU register sizes
Commit 90a09178f309 ("dt-bindings: Add documentation for GV11B GPU")
added the GV11B GPU device-tree bindings information but incorrectly
added an additional 0 to the size of the addresses in the example.
Fixes: 90a09178f309 ("dt-bindings: Add documentation for GV11B GPU")
Acked-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Link: https://lore.kernel.org/r/20201124121842.1037035-1-jonathanh@nvidia.com
Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt b/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt index 662a3c8a7d29..cc6ce5221a38 100644 --- a/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt +++ b/Documentation/devicetree/bindings/gpu/nvidia,gk20a.txt @@ -97,8 +97,8 @@ Example for GV11B: gpu@17000000 { compatible = "nvidia,gv11b"; - reg = <0x17000000 0x10000000>, - <0x18000000 0x10000000>; + reg = <0x17000000 0x1000000>, + <0x18000000 0x1000000>; interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; interrupt-names = "stall", "nonstall"; |