]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ARM: dts: exynos: Move fixed clocks under root node in Exynos3250
authorKrzysztof Kozlowski <krzk@kernel.org>
Sat, 29 Aug 2020 17:25:30 +0000 (19:25 +0200)
committerKrzysztof Kozlowski <krzk@kernel.org>
Tue, 1 Sep 2020 10:15:20 +0000 (12:15 +0200)
The fixed clocks are kept under dedicated node fixed-rate-clocks, thus a
fake "reg" was added.  This is not correct with dtschema as fixed-clock
binding does not have a "reg" property:

  arch/arm/boot/dts/exynos3250-artik5-eval.dt.yaml: clock@0: 'reg' does not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Tested-by: Marek Szyprowski <m.szyprowski@samsung.com>
Link: https://lore.kernel.org/r/20200829172532.29358-2-krzk@kernel.org
arch/arm/boot/dts/exynos3250.dtsi

index d3fb45a56527e5d5e5ec31ec4e0c1123c4007cc2..c67c70e46794d5acb97d3a6e2a794295fe3f93c1 100644 (file)
                };
        };
 
-       fixed-rate-clocks {
-               #address-cells = <1>;
-               #size-cells = <0>;
-
-               xusbxti: clock@0 {
-                       compatible = "fixed-clock";
-                       reg = <0>;
-                       clock-frequency = <0>;
-                       #clock-cells = <0>;
-                       clock-output-names = "xusbxti";
-               };
+       xusbxti: clock-0 {
+               compatible = "fixed-clock";
+               clock-frequency = <0>;
+               #clock-cells = <0>;
+               clock-output-names = "xusbxti";
+       };
 
-               xxti: clock@1 {
-                       compatible = "fixed-clock";
-                       reg = <1>;
-                       clock-frequency = <0>;
-                       #clock-cells = <0>;
-                       clock-output-names = "xxti";
-               };
+       xxti: clock-1 {
+               compatible = "fixed-clock";
+               clock-frequency = <0>;
+               #clock-cells = <0>;
+               clock-output-names = "xxti";
+       };
 
-               xtcxo: clock@2 {
-                       compatible = "fixed-clock";
-                       reg = <2>;
-                       clock-frequency = <0>;
-                       #clock-cells = <0>;
-                       clock-output-names = "xtcxo";
-               };
+       xtcxo: clock-2 {
+               compatible = "fixed-clock";
+               clock-frequency = <0>;
+               #clock-cells = <0>;
+               clock-output-names = "xtcxo";
        };
 
        pmu {