Skip to content

Commit 4e62625

Browse files
noglitchambarus
authored andcommitted
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: Tudor Ambarus <tudor.ambarus@microchip.com>
1 parent 9a0e949 commit 4e62625

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/arm/boot/dts/sama5d2.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
};
5757
};
5858

59-
etm@73C000 {
59+
etm@73c000 {
6060
compatible = "arm,coresight-etm3x", "arm,primecell";
61-
reg = <0x73C000 0x1000>;
61+
reg = <0x73c000 0x1000>;
6262

6363
clocks = <&pmc PMC_TYPE_CORE PMC_MCK>;
6464
clock-names = "apb_pclk";

0 commit comments

Comments
 (0)