diff options
author | Stefan Agner <stefan@agner.ch> | 2016-08-12 03:11:07 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2016-08-17 17:34:33 +0300 |
commit | 1c4e2a11bac4b5b04cd6588840341af28e137588 (patch) | |
tree | 28999ed462baeed754fc3ef9cf7c5e8bce3b5d05 /arch | |
parent | f5bd51b60f4994023b5edd9241d2c0a839598553 (diff) | |
download | linux-1c4e2a11bac4b5b04cd6588840341af28e137588.tar.xz |
ARM: dts: imx7d: add clock-frequency to CPU nodes
Add clock-frequency property to CPU nodes. Avoids warnings like
"/cpus/cpu@0 missing clock-frequency property".
Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/boot/dts/imx7d.dtsi | 2 | ||||
-rw-r--r-- | arch/arm/boot/dts/imx7s.dtsi | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/imx7d.dtsi b/arch/arm/boot/dts/imx7d.dtsi index d0b199c2e0df..f6dee41a05d9 100644 --- a/arch/arm/boot/dts/imx7d.dtsi +++ b/arch/arm/boot/dts/imx7d.dtsi @@ -51,12 +51,14 @@ 996000 1075000 792000 975000 >; + clock-frequency = <996000000>; }; cpu1: cpu@1 { compatible = "arm,cortex-a7"; device_type = "cpu"; reg = <1>; + clock-frequency = <996000000>; }; }; diff --git a/arch/arm/boot/dts/imx7s.dtsi b/arch/arm/boot/dts/imx7s.dtsi index 75e9d1b55994..bb7102cae899 100644 --- a/arch/arm/boot/dts/imx7s.dtsi +++ b/arch/arm/boot/dts/imx7s.dtsi @@ -85,6 +85,7 @@ compatible = "arm,cortex-a7"; device_type = "cpu"; reg = <0>; + clock-frequency = <792000000>; clock-latency = <61036>; /* two CLK32 periods */ clocks = <&clks IMX7D_CLK_ARM>; }; |