diff options
author | Nicolas Ferre <nicolas.ferre@microchip.com> | 2021-04-08 19:44:43 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2021-04-12 16:22:26 +0300 |
commit | e4379d649e0e546da73f3af5d01f18832044cc09 (patch) | |
tree | d291e036d9f2aeac98876a68d60e8acbb9eb05b4 /arch/arm | |
parent | db7a033f2b1f54c46244efe54687fe8f4b9b7c21 (diff) | |
download | linux-e4379d649e0e546da73f3af5d01f18832044cc09.tar.xz |
ARM: dts: at91: sama5d2/trivial: fix letter case for etm hex address
Fix the etm node hex address to lower case for matching regexp
specification and removing the additional warning that looks like:
arch/arm/boot/dts/at91-sama5d2_ptc_ek.dt.yaml: /: 'etm@73C000' does not
match any of the regexes: '@(0|[1-9a-f][0-9a-f]*)$', '^[^@]+$',
'pinctrl-[0-9]+'
Reported-by: Arnd Bergmann <arnd@kernel.org>
Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/boot/dts/sama5d2.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/sama5d2.dtsi b/arch/arm/boot/dts/sama5d2.dtsi index a27294394508..801969c113d6 100644 --- a/arch/arm/boot/dts/sama5d2.dtsi +++ b/arch/arm/boot/dts/sama5d2.dtsi @@ -56,9 +56,9 @@ }; }; - etm@73C000 { + etm@73c000 { compatible = "arm,coresight-etm3x", "arm,primecell"; - reg = <0x73C000 0x1000>; + reg = <0x73c000 0x1000>; clocks = <&pmc PMC_TYPE_CORE PMC_MCK>; clock-names = "apb_pclk"; |