Skip to content

Commit 82a1c67

Browse files
sudeep-hollaarndb
authored andcommitted
ARM: dts: versatile: Fix up interrupt controller node names
Once the new schema interrupt-controller/arm,vic.yaml is added, we get the below warnings: arch/arm/boot/dts/versatile-ab.dt.yaml: intc@10140000: $nodename:0: 'intc@10140000' does not match '^interrupt-controller(@[0-9a-f,]+)*$' arch/arm/boot/dts/versatile-ab.dt.yaml: intc@10140000: 'clear-mask' does not match any of the regexes Fix the node names for the interrupt controller to conform to the standard node name interrupt-controller@.. Also drop invalid clear-mask property. Signed-off-by: Sudeep Holla <[email protected]> Acked-by: Linus Walleij <[email protected]> Link: https://lore.kernel.org/r/[email protected]' Signed-off-by: Arnd Bergmann <[email protected]>
1 parent 8825f27 commit 82a1c67

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

arch/arm/boot/dts/versatile-ab.dts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,16 +195,15 @@
195195
#size-cells = <1>;
196196
ranges;
197197

198-
vic: intc@10140000 {
198+
vic: interrupt-controller@10140000 {
199199
compatible = "arm,versatile-vic";
200200
interrupt-controller;
201201
#interrupt-cells = <1>;
202202
reg = <0x10140000 0x1000>;
203-
clear-mask = <0xffffffff>;
204203
valid-mask = <0xffffffff>;
205204
};
206205

207-
sic: intc@10003000 {
206+
sic: interrupt-controller@10003000 {
208207
compatible = "arm,versatile-sic";
209208
interrupt-controller;
210209
#interrupt-cells = <1>;

arch/arm/boot/dts/versatile-pb.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
amba {
99
/* The Versatile PB is using more SIC IRQ lines than the AB */
10-
sic: intc@10003000 {
10+
sic: interrupt-controller@10003000 {
1111
clear-mask = <0xffffffff>;
1212
/*
1313
* Valid interrupt lines mask according to

0 commit comments

Comments
 (0)