diff options
author | Rob Herring <robh@kernel.org> | 2017-12-21 19:29:17 +0100 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2017-12-26 17:37:05 +0100 |
commit | afc3bca4cf9d269dcf9f3abd0d65e45a390f0e59 (patch) | |
tree | 8aa1d1dae4d59ece6d04d482048787c60c317810 /Documentation/devicetree/bindings/arm/samsung/exynos-adc.txt | |
parent | dt-bindings: display: panel: Fix compatible string for Toshiba LT089AC29000 (diff) | |
download | linux-afc3bca4cf9d269dcf9f3abd0d65e45a390f0e59.tar.xz linux-afc3bca4cf9d269dcf9f3abd0d65e45a390f0e59.zip |
dt-bindings: Use lower case hex in unit-addresses
DT unit addresses should be lower case hex. Fix all the
binding examples.
Converted with the following command from Krzysztof Kozlowski:
sed -e 's/@\([a-fA-F0-9_-]*\) {/@\L\1 {/' -i $(find Documentation/devicetree/bindings -name '*.txt')
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/arm/samsung/exynos-adc.txt')
-rw-r--r-- | Documentation/devicetree/bindings/arm/samsung/exynos-adc.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/devicetree/bindings/arm/samsung/exynos-adc.txt b/Documentation/devicetree/bindings/arm/samsung/exynos-adc.txt index ccaaec6014bd..6c49db7f8ad2 100644 --- a/Documentation/devicetree/bindings/arm/samsung/exynos-adc.txt +++ b/Documentation/devicetree/bindings/arm/samsung/exynos-adc.txt @@ -55,7 +55,7 @@ Note: child nodes can be added for auto probing from device tree. Example: adding device info in dtsi file -adc: adc@12D10000 { +adc: adc@12d10000 { compatible = "samsung,exynos-adc-v1"; reg = <0x12D10000 0x100>; interrupts = <0 106 0>; @@ -71,7 +71,7 @@ adc: adc@12D10000 { Example: adding device info in dtsi file for Exynos3250 with additional sclk -adc: adc@126C0000 { +adc: adc@126c0000 { compatible = "samsung,exynos3250-adc", "samsung,exynos-adc-v2; reg = <0x126C0000 0x100>; interrupts = <0 137 0>; @@ -87,7 +87,7 @@ adc: adc@126C0000 { Example: Adding child nodes in dts file -adc@12D10000 { +adc@12d10000 { /* NTC thermistor is a hwmon device */ ncp15wb473@0 { |