Skip to content

Commit 39005e5

Browse files
superna9999khilman
authored andcommitted
ARM64: dts: meson-gx: fix UART pclk clock name
The clock-names for pclk was wrongly set to "core", but the bindings specifies "pclk". This was not cathed until the legacy non-documented bindings were removed. Reported-by: Andreas Färber <[email protected]> Fixes: f72d6f6 ("ARM64: dts: meson-gx: use stable UART bindings with correct gate clock") Signed-off-by: Neil Armstrong <[email protected]> Signed-off-by: Kevin Hilman <[email protected]>
1 parent 044d71b commit 39005e5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,12 +753,12 @@
753753

754754
&uart_B {
755755
clocks = <&xtal>, <&clkc CLKID_UART1>, <&xtal>;
756-
clock-names = "xtal", "core", "baud";
756+
clock-names = "xtal", "pclk", "baud";
757757
};
758758

759759
&uart_C {
760760
clocks = <&xtal>, <&clkc CLKID_UART2>, <&xtal>;
761-
clock-names = "xtal", "core", "baud";
761+
clock-names = "xtal", "pclk", "baud";
762762
};
763763

764764
&vpu {

arch/arm64/boot/dts/amlogic/meson-gxl.dtsi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@
688688

689689
&uart_A {
690690
clocks = <&xtal>, <&clkc CLKID_UART0>, <&xtal>;
691-
clock-names = "xtal", "core", "baud";
691+
clock-names = "xtal", "pclk", "baud";
692692
};
693693

694694
&uart_AO {
@@ -703,12 +703,12 @@
703703

704704
&uart_B {
705705
clocks = <&xtal>, <&clkc CLKID_UART1>, <&xtal>;
706-
clock-names = "xtal", "core", "baud";
706+
clock-names = "xtal", "pclk", "baud";
707707
};
708708

709709
&uart_C {
710710
clocks = <&xtal>, <&clkc CLKID_UART2>, <&xtal>;
711-
clock-names = "xtal", "core", "baud";
711+
clock-names = "xtal", "pclk", "baud";
712712
};
713713

714714
&vpu {

0 commit comments

Comments
 (0)