diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-07-27 12:48:50 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2017-07-27 12:48:50 +0200 |
commit | 2f9227c79874fef0f8b974cf7701f5a8ad2bb6bf (patch) | |
tree | 1125b101f42a6e4be4a23a3804a575bf5ac8b90c /arch/arm64 | |
parent | 520eccdfe187591a51ea9ab4c1a024ae4d0f68d9 (diff) | |
parent | 5e2feac330953fe75197aecb20c781400e2bf606 (diff) | |
download | linux-2f9227c79874fef0f8b974cf7701f5a8ad2bb6bf.tar.gz linux-2f9227c79874fef0f8b974cf7701f5a8ad2bb6bf.tar.bz2 linux-2f9227c79874fef0f8b974cf7701f5a8ad2bb6bf.zip |
Merge tag 'renesas-fixes-for-v4.13' of https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into fixes
Pull "Renesas ARM Based SoC Fixes for v4.13" from Simon Horman:
Correct order of sound clock frequencies for Salvator 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-fixes-for-v4.13' of https://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
arm64: renesas: salvator-common: sound clock-frequency needs descending order
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/boot/dts/renesas/salvator-common.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/renesas/salvator-common.dtsi b/arch/arm64/boot/dts/renesas/salvator-common.dtsi index aef35e0b685a..a451996f590a 100644 --- a/arch/arm64/boot/dts/renesas/salvator-common.dtsi +++ b/arch/arm64/boot/dts/renesas/salvator-common.dtsi @@ -508,7 +508,7 @@ /* audio_clkout0/1/2/3 */ #clock-cells = <1>; - clock-frequency = <11289600 12288000>; + clock-frequency = <12288000 11289600>; status = "okay"; |