diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-07-27 12:51:28 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-07-27 12:51:28 +0200 |
commit | b2e58cbee39c076c37b7e566640751922d88d9d5 (patch) | |
tree | 514548e42fa71a72e166c27c6bf3d10b15bcca6b /arch | |
parent | d4e740053aed4d13ba4101a722a6733401ca54a0 (diff) | |
parent | 2752660a37aed65b1e00fd4563d9f152eefb8200 (diff) | |
download | linux-stable-b2e58cbee39c076c37b7e566640751922d88d9d5.tar.gz linux-stable-b2e58cbee39c076c37b7e566640751922d88d9d5.tar.bz2 linux-stable-b2e58cbee39c076c37b7e566640751922d88d9d5.zip |
Merge tag 'renesas-fixes2-for-v4.13' of https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into fixes
Pull "Second Round of Renesas ARM Based SoC Fixes for v4.13" from Simon Horman:
Correct order of sound clock frequencies for ULCB boards
used by r8a7795 and r8a7796 SoCs.
These sounds clock frequencies are used as the ADG clock (output clocks
for audio module) initial setting and sound codec's initial system clock
which needs the maximum clock frequency. Thus, descending order is
required.
* tag 'renesas-fixes2-for-v4.13' of https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
arm64: dts: renesas: ulcb: sound clock-frequency needs descending order
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/boot/dts/renesas/ulcb.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/renesas/ulcb.dtsi b/arch/arm64/boot/dts/renesas/ulcb.dtsi index b5c6ee07d7f9..d1a3f3b7a0ab 100644 --- a/arch/arm64/boot/dts/renesas/ulcb.dtsi +++ b/arch/arm64/boot/dts/renesas/ulcb.dtsi @@ -281,7 +281,7 @@ /* audio_clkout0/1/2/3 */ #clock-cells = <1>; - clock-frequency = <11289600 12288000>; + clock-frequency = <12288000 11289600>; status = "okay"; |