Skip to content

Commit

Permalink
Merge pull request #1079 from rtiemann/rpi-4.0.y-i2s-iomem
Browse files Browse the repository at this point in the history
bcm2708/2835-i2s: Fix for PCM register ranges in device trees
  • Loading branch information
pelwell committed Jul 20, 2015
2 parents 5ef4952 + 21bcd06 commit d4e1364
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Documentation/devicetree/bindings/dma/bcm2835-dma.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ Example:

bcm2835_i2s: i2s@7e203000 {
compatible = "brcm,bcm2835-i2s";
reg = < 0x7e203000 0x20>,
< 0x7e101098 0x02>;
reg = < 0x7e203000 0x24>,
< 0x7e101098 0x08>;

dmas = <&dma 2>,
<&dma 3>;
Expand Down
4 changes: 2 additions & 2 deletions Documentation/devicetree/bindings/sound/bcm2835-i2s.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Example:

bcm2835_i2s: i2s@7e203000 {
compatible = "brcm,bcm2835-i2s";
reg = <0x7e203000 0x20>,
<0x7e101098 0x02>;
reg = <0x7e203000 0x24>,
<0x7e101098 0x08>;

dmas = <&dma 2>,
<&dma 3>;
Expand Down
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/bcm2708_common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@

i2s: i2s@7e203000 {
compatible = "brcm,bcm2708-i2s";
reg = <0x7e203000 0x20>,
<0x7e101098 0x02>;
reg = <0x7e203000 0x24>,
<0x7e101098 0x08>;

//dmas = <&dma 2>,
// <&dma 3>;
Expand Down
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/bcm2835.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@

i2s: i2s@7e203000 {
compatible = "brcm,bcm2835-i2s";
reg = <0x7e203000 0x20>,
<0x7e101098 0x02>;
reg = <0x7e203000 0x24>,
<0x7e101098 0x08>;

dmas = <&dma 2>,
<&dma 3>;
Expand Down

0 comments on commit d4e1364

Please sign in to comment.