diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2019-01-09 16:52:48 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2019-01-10 22:51:24 +0300 |
commit | 4de3f59c51f990b99691923c9e5c11928aea196d (patch) | |
tree | 3efd1e68f91aaf63bc6a8c83f1671b9e6e5f2cd3 /arch/arm/boot/dts/s3c2416-smdk2416.dts | |
parent | be6a95a55a095686455307d9437a9a25cf0233ef (diff) | |
download | linux-4de3f59c51f990b99691923c9e5c11928aea196d.tar.xz |
ARM: dts: s3c2416: Fix xti node's missing reg property warning
Fix the DTC warning for xti node:
arch/arm/boot/dts/s3c2416-smdk2416.dts:23.12-28.5:
Warning (simple_bus_reg): /clocks/xti: missing or empty reg/ranges property
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/s3c2416-smdk2416.dts')
-rw-r--r-- | arch/arm/boot/dts/s3c2416-smdk2416.dts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/s3c2416-smdk2416.dts b/arch/arm/boot/dts/s3c2416-smdk2416.dts index 5164386aff3a..cb371bf72f64 100644 --- a/arch/arm/boot/dts/s3c2416-smdk2416.dts +++ b/arch/arm/boot/dts/s3c2416-smdk2416.dts @@ -19,9 +19,12 @@ clocks { compatible = "simple-bus"; + #address-cells = <1>; + #size-cells = <0>; - xti: xti { + xti: xti@0 { compatible = "fixed-clock"; + reg = <0>; clock-frequency = <12000000>; clock-output-names = "xti"; #clock-cells = <0>; |