Skip to content

Commit

Permalink
ARM: dt: tegra: format regs properties consistently
Browse files Browse the repository at this point in the history
Place each reg "entry" on its own line, and wrap the whole list in
<> rather than each individual entry.

The convention chosen here is slightly arbitrary, but is not consistent
throughout all Tegra files.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Olof Johansson <olof@lixom.net>
  • Loading branch information
Stephen Warren committed May 14, 2012
1 parent c44e438 commit 5ff4888
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/tegra20.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
compatible = "arm,cortex-a9-gic";
interrupt-controller;
#interrupt-cells = <3>;
reg = <0x50041000 0x1000>,
<0x50040100 0x0100>;
reg = <0x50041000 0x1000
0x50040100 0x0100>;
};

pmu {
Expand Down
7 changes: 4 additions & 3 deletions arch/arm/boot/dts/tegra30.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
compatible = "arm,cortex-a9-gic";
interrupt-controller;
#interrupt-cells = <3>;
reg = <0x50041000 0x1000>,
<0x50040100 0x0100>;
reg = <0x50041000 0x1000
0x50040100 0x0100>;
};

pmu {
Expand Down Expand Up @@ -186,7 +186,8 @@

ahub {
compatible = "nvidia,tegra30-ahub";
reg = <0x70080000 0x200 0x70080200 0x100>;
reg = <0x70080000 0x200
0x70080200 0x100>;
interrupts = <0 103 0x04>;
nvidia,dma-request-selector = <&apbdma 1>;

Expand Down

0 comments on commit 5ff4888

Please sign in to comment.