From 466f91a9e3e1efde00d8f4b0d5b861686bb38700 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Mon, 9 Sep 2019 11:11:20 -0500 Subject: [PATCH] dts: nxp: nxp_ke1xf: Make LPO fixed-clock its own node Pull out the LPO fixed-clock that is part of the PMC hardware block as its own child node of the PMC block. This is because the PMC could have its own driver associated with it that is seperate from the LPO clk. Signed-off-by: Kumar Gala --- dts/arm/nxp/nxp_ke1xf.dtsi | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/dts/arm/nxp/nxp_ke1xf.dtsi b/dts/arm/nxp/nxp_ke1xf.dtsi index d51521187a4b26..25bad4205b34dc 100644 --- a/dts/arm/nxp/nxp_ke1xf.dtsi +++ b/dts/arm/nxp/nxp_ke1xf.dtsi @@ -71,12 +71,15 @@ }; pmc: pmc@4007d000 { - compatible = "fixed-clock"; reg = <0x4007d000 0x1000>; label = "PMC"; + + lpo: lpo128k { /* LPO clock */ - clock-frequency = <125000>; - #clock-cells = <0>; + compatible = "fixed-clock"; + clock-frequency = <125000>; + #clock-cells = <0>; + }; }; pcc: pcc@40065000 { @@ -100,7 +103,7 @@ compatible = "nxp,kinetis-wdog32"; reg = <0x40052000 0x1000>; interrupts = <22 0>; - clocks = <&pmc>; + clocks = <&lpo>; clk-source = <1>; clk-divider = <256>; label = "WDT_0";