diff options
| author | Fabio Estevam <festevam@denx.de> | 2023-09-21 11:17:42 -0300 |
|---|---|---|
| committer | Shawn Guo <shawnguo@kernel.org> | 2023-09-25 11:49:10 +0800 |
| commit | b136d55c142e10cfd152368f285598b21bf246e7 (patch) | |
| tree | 6b99469ec5632ee6b9d004c44fbd7c181b6df60f | |
| parent | 09ecbb0ecc4abbaef20e108ceecfb0828a0b08ad (diff) | |
| download | linux-b136d55c142e10cfd152368f285598b21bf246e7.tar.gz linux-b136d55c142e10cfd152368f285598b21bf246e7.zip | |
ARM: dts: mxs: Fix duart clock-names
Per pl011.yaml, the first entry of clock-names should
be "uartclk".
Change it accordingly to fix the following schema warning:
imx23-xfi3.dtb: serial@80070000: clock-names:0: 'uartclk' was expected
The pl011 driver does not search for the clock name, so this
change is safe and was tested on a imx28-evk board.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
| -rw-r--r-- | arch/arm/boot/dts/nxp/mxs/imx23.dtsi | 2 | ||||
| -rw-r--r-- | arch/arm/boot/dts/nxp/mxs/imx28.dtsi | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/nxp/mxs/imx23.dtsi b/arch/arm/boot/dts/nxp/mxs/imx23.dtsi index 5eca942a52fd..7411061bf814 100644 --- a/arch/arm/boot/dts/nxp/mxs/imx23.dtsi +++ b/arch/arm/boot/dts/nxp/mxs/imx23.dtsi @@ -598,7 +598,7 @@ reg = <0x80070000 0x2000>; interrupts = <0>; clocks = <&clks 32>, <&clks 16>; - clock-names = "uart", "apb_pclk"; + clock-names = "uartclk", "apb_pclk"; status = "disabled"; }; diff --git a/arch/arm/boot/dts/nxp/mxs/imx28.dtsi b/arch/arm/boot/dts/nxp/mxs/imx28.dtsi index 763adeb995ee..32815d2403de 100644 --- a/arch/arm/boot/dts/nxp/mxs/imx28.dtsi +++ b/arch/arm/boot/dts/nxp/mxs/imx28.dtsi @@ -1252,7 +1252,7 @@ reg = <0x80074000 0x1000>; interrupts = <47>; clocks = <&clks 45>, <&clks 26>; - clock-names = "uart", "apb_pclk"; + clock-names = "uartclk", "apb_pclk"; status = "disabled"; }; |
