diff options
author | Shawn Guo <shawnguo@kernel.org> | 2018-05-04 02:24:16 +0200 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-05-14 16:08:01 +0200 |
commit | 8799b5d5c76c5fc53a83cc86f16fb7f74bad923d (patch) | |
tree | db57d95a45fa0e86b4c8f564ae6b72398616f512 /arch/arm/boot/dts/imx6q-bx50v3.dtsi | |
parent | ARM: dts: imx27: use label to override osc26m clock setting (diff) | |
download | linux-8799b5d5c76c5fc53a83cc86f16fb7f74bad923d.tar.xz linux-8799b5d5c76c5fc53a83cc86f16fb7f74bad923d.zip |
ARM: dts: imx: drop 'clocks' container for board level clocks
For soc level of clocks which are input to Clock Control Module, clock
driver expects them to be under 'clocks' container node. But for board
level clocks, this container is not really necessary. Let's drop it and
use an unique name for fixed rate clock, so that 'reg' property can be
saved as well.
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Acked-By: Lothar Waßmann <LW@KARO-electronics.de>
Diffstat (limited to 'arch/arm/boot/dts/imx6q-bx50v3.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx6q-bx50v3.dtsi | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/arch/arm/boot/dts/imx6q-bx50v3.dtsi b/arch/arm/boot/dts/imx6q-bx50v3.dtsi index d0e7dab4d72b..d3cba09be0cb 100644 --- a/arch/arm/boot/dts/imx6q-bx50v3.dtsi +++ b/arch/arm/boot/dts/imx6q-bx50v3.dtsi @@ -43,13 +43,10 @@ #include "imx6q-ba16.dtsi" / { - clocks { - mclk: clock@0 { - compatible = "fixed-clock"; - reg = <0>; - #clock-cells = <0>; - clock-frequency = <22000000>; - }; + mclk: clock-mclk { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <22000000>; }; gpio-poweroff { |