* [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes
@ 2026-09-03 9:06 Geert Uytterhoeven
2026-09-03 9:06 ` [PATCH 1/2] dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/ Geert Uytterhoeven
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Geert Uytterhoeven @ 2026-09-03 9:06 UTC (permalink / raw)
To: Thomas Gleixner, Radu Rendec, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: devicetree, linux-kernel, Geert Uytterhoeven
Hi all,
Just two miscellaneous fixes for the OpenPIC DT bindings.
Don't ask why I looked at that file (my CHRP box died 22y ago)...
Thanks for your comments!
Geert Uytterhoeven (2):
dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/
dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling
reference
.../bindings/interrupt-controller/chrp,open-pic.yaml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
--
2.43.0
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/2] dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/
2026-09-03 9:06 [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes Geert Uytterhoeven
@ 2026-09-03 9:06 ` Geert Uytterhoeven
2026-09-17 22:22 ` Rob Herring (Arm)
2026-09-03 9:06 ` [PATCH 2/2] dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling reference Geert Uytterhoeven
2026-09-13 18:48 ` [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes Radu Rendec
2 siblings, 1 reply; 6+ messages in thread
From: Geert Uytterhoeven @ 2026-09-03 9:06 UTC (permalink / raw)
To: Thomas Gleixner, Radu Rendec, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: devicetree, linux-kernel, Geert Uytterhoeven
The device_type for an OpenPIC node is "open-pic", not "open-pci".
Fixes: a241f1a1b338b714 ("dt-bindings: interrupt-controller: Convert chrp,open-pic to DT schema")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
.../devicetree/bindings/interrupt-controller/chrp,open-pic.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml b/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml
index 642738512f3ce1a9..5363f4c6ffbcfe4c 100644
--- a/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml
+++ b/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml
@@ -24,7 +24,7 @@ properties:
- const: chrp,open-pic
device_type:
- const: open-pci
+ const: open-pic
deprecated: true
reg:
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 2/2] dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling reference
2026-09-03 9:06 [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes Geert Uytterhoeven
2026-09-03 9:06 ` [PATCH 1/2] dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/ Geert Uytterhoeven
@ 2026-09-03 9:06 ` Geert Uytterhoeven
2026-09-17 22:23 ` Rob Herring (Arm)
2026-09-13 18:48 ` [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes Radu Rendec
2 siblings, 1 reply; 6+ messages in thread
From: Geert Uytterhoeven @ 2026-09-03 9:06 UTC (permalink / raw)
To: Thomas Gleixner, Radu Rendec, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: devicetree, linux-kernel, Geert Uytterhoeven
The target of "[1]" was lost during the conversion to json-schema.
Replace it by an inline reference.
Fixes: a241f1a1b338b714 ("dt-bindings: interrupt-controller: Convert chrp,open-pic to DT schema")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
.../bindings/interrupt-controller/chrp,open-pic.yaml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml b/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml
index 5363f4c6ffbcfe4c..294af57a7c372145 100644
--- a/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml
+++ b/Documentation/devicetree/bindings/interrupt-controller/chrp,open-pic.yaml
@@ -12,8 +12,9 @@ maintainers:
description:
This binding specifies what properties must be available in the device tree
representation of an Open PIC compliant interrupt controller. This binding is
- based on the binding defined for Open PIC in [1] and is a superset of that
- binding.
+ based on the binding defined for Open PIC in the Devicetree Specification
+ (available from https://www.devicetree.org/specifications/) and is a superset
+ of that binding.
properties:
compatible:
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes
2026-09-03 9:06 [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes Geert Uytterhoeven
2026-09-03 9:06 ` [PATCH 1/2] dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/ Geert Uytterhoeven
2026-09-03 9:06 ` [PATCH 2/2] dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling reference Geert Uytterhoeven
@ 2026-09-13 18:48 ` Radu Rendec
2 siblings, 0 replies; 6+ messages in thread
From: Radu Rendec @ 2026-09-13 18:48 UTC (permalink / raw)
To: Geert Uytterhoeven, Thomas Gleixner, Rob Herring,
Krzysztof Kozlowski, Conor Dooley
Cc: devicetree, linux-kernel
On Thu, 2026-09-03 at 11:06 +0200, Geert Uytterhoeven wrote:
> Hi all,
>
> Just two miscellaneous fixes for the OpenPIC DT bindings.
> Don't ask why I looked at that file (my CHRP box died 22y ago)...
>
> Thanks for your comments!
>
> Geert Uytterhoeven (2):
> dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/
> dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling
> reference
>
> .../bindings/interrupt-controller/chrp,open-pic.yaml | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
Reviewed-by: Radu Rendec <radu@rendec.net>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/
2026-09-03 9:06 ` [PATCH 1/2] dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/ Geert Uytterhoeven
@ 2026-09-17 22:22 ` Rob Herring (Arm)
0 siblings, 0 replies; 6+ messages in thread
From: Rob Herring (Arm) @ 2026-09-17 22:22 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Radu Rendec, Conor Dooley, Krzysztof Kozlowski, Thomas Gleixner,
devicetree, linux-kernel
On Thu, 03 Sep 2026 11:06:29 +0200, Geert Uytterhoeven wrote:
> The device_type for an OpenPIC node is "open-pic", not "open-pci".
>
> Fixes: a241f1a1b338b714 ("dt-bindings: interrupt-controller: Convert chrp,open-pic to DT schema")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> .../devicetree/bindings/interrupt-controller/chrp,open-pic.yaml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling reference
2026-09-03 9:06 ` [PATCH 2/2] dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling reference Geert Uytterhoeven
@ 2026-09-17 22:23 ` Rob Herring (Arm)
0 siblings, 0 replies; 6+ messages in thread
From: Rob Herring (Arm) @ 2026-09-17 22:23 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Thomas Gleixner, linux-kernel, Radu Rendec, Krzysztof Kozlowski,
Conor Dooley, devicetree
On Thu, 03 Sep 2026 11:06:30 +0200, Geert Uytterhoeven wrote:
> The target of "[1]" was lost during the conversion to json-schema.
> Replace it by an inline reference.
>
> Fixes: a241f1a1b338b714 ("dt-bindings: interrupt-controller: Convert chrp,open-pic to DT schema")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> .../bindings/interrupt-controller/chrp,open-pic.yaml | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-09-17 22:23 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-03 9:06 [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes Geert Uytterhoeven
2026-09-03 9:06 ` [PATCH 1/2] dt-bindings: interrupt-controller: chrp,open-pic: Typo s/pci/pic/ Geert Uytterhoeven
2026-09-17 22:22 ` Rob Herring (Arm)
2026-09-03 9:06 ` [PATCH 2/2] dt-bindings: interrupt-controller: chrp,open-pic: Fix dangling reference Geert Uytterhoeven
2026-09-17 22:23 ` Rob Herring (Arm)
2026-09-13 18:48 ` [PATCH 0/2] dt-bindings: interrupt-controller: chrp,open-pic: Miscellaneous fixes Radu Rendec
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®