diff options
| author | 2022-06-27 17:19:56 +0300 | |
|---|---|---|
| committer | 2022-07-08 16:27:52 +0200 | |
| commit | a72d4b182f4e092573035fe6fa9402a14111fd64 (patch) | |
| tree | d24c5b5c8791dc3eb375a1e2cac4b3a2225fdaec | |
| parent | dt-bindings: Add bindings for Tegra234 Host1x and VIC (diff) | |
| download | linux-dev-a72d4b182f4e092573035fe6fa9402a14111fd64.tar.xz linux-dev-a72d4b182f4e092573035fe6fa9402a14111fd64.zip | |
dt-bindings: host1x: Fix bracketing in example
The bracketing for the interrupts property in the device tree
example is incorrect. Fix it.
Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
| -rw-r--r-- | Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml b/Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml index 2a6e54f74127..913ca104c871 100644 --- a/Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml +++ b/Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml @@ -239,8 +239,8 @@ examples: host1x@50000000 { compatible = "nvidia,tegra20-host1x"; reg = <0x50000000 0x00024000>; - interrupts = <0 65 0x04 /* mpcore syncpt */ - 0 67 0x04>; /* mpcore general */ + interrupts = <0 65 0x04>, /* mpcore syncpt */ + <0 67 0x04>; /* mpcore general */ interrupt-names = "syncpt", "host1x"; clocks = <&tegra_car TEGRA20_CLK_HOST1X>; clock-names = "host1x"; |
