Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit 3860aa1

Browse files
committed
ARM: dts: rockchip: swap i2s clock ordering on rk3036
For sound setups using the simple-card mechanism, the main clock (sysclk) is expected to be the first element. For the i2s-driver itself it doesn't matter, as it uses named clocks, so we can just swap them. Reported-by: Caesar Wang <[email protected]> Signed-off-by: Heiko Stuebner <[email protected]>
1 parent f475533 commit 3860aa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm/boot/dts/rk3036.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@
241241
interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
242242
#address-cells = <1>;
243243
#size-cells = <0>;
244-
clock-names = "i2s_hclk", "i2s_clk";
245-
clocks = <&cru HCLK_I2S>, <&cru SCLK_I2S>;
244+
clock-names = "i2s_clk", "i2s_hclk";
245+
clocks = <&cru SCLK_I2S>, <&cru HCLK_I2S>;
246246
dmas = <&pdma 0>, <&pdma 1>;
247247
dma-names = "tx", "rx";
248248
pinctrl-names = "default";

0 commit comments

Comments
 (0)