* [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation
@ 2014-05-12 14:27 Ezequiel Garcia
[not found] ` <1399904860-937-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Ezequiel Garcia @ 2014-05-12 14:27 UTC (permalink / raw)
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
devicetree-u79uwXL29TY76Z2rM5mHXA, Jason Cooper
Cc: Thomas Petazzoni, Gregory Clement, Sebastian Hesselbarth,
Thomas Gleixner, Ezequiel Garcia
Move the devicetree binding documentation to the interrupt-controller
directory, where it belongs.
Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
---
.../devicetree/bindings/arm/armada-370-xp-mpic.txt | 38 ----------------------
.../marvell,armada-370-xp-mpic.txt | 38 ++++++++++++++++++++++
2 files changed, 38 insertions(+), 38 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt
create mode 100644 Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt
diff --git a/Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt b/Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt
deleted file mode 100644
index 5fc0313..0000000
--- a/Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt
+++ /dev/null
@@ -1,38 +0,0 @@
-Marvell Armada 370, 375, 38x, XP Interrupt Controller
------------------------------------------------------
-
-Required properties:
-- compatible: Should be "marvell,mpic"
-- interrupt-controller: Identifies the node as an interrupt controller.
-- msi-controller: Identifies the node as an PCI Message Signaled
- Interrupt controller.
-- #interrupt-cells: The number of cells to define the interrupts. Should be 1.
- The cell is the IRQ number
-
-- reg: Should contain PMIC registers location and length. First pair
- for the main interrupt registers, second pair for the per-CPU
- interrupt registers. For this last pair, to be compliant with SMP
- support, the "virtual" must be use (For the record, these registers
- automatically map to the interrupt controller registers of the
- current CPU)
-
-Optional properties:
-
-- interrupts: If defined, then it indicates that this MPIC is
- connected as a slave to another interrupt controller. This is
- typically the case on Armada 375 and Armada 38x, where the MPIC is
- connected as a slave to the Cortex-A9 GIC. The provided interrupt
- indicate to which GIC interrupt the MPIC output is connected.
-
-Example:
-
- mpic: interrupt-controller@d0020000 {
- compatible = "marvell,mpic";
- #interrupt-cells = <1>;
- #address-cells = <1>;
- #size-cells = <1>;
- interrupt-controller;
- msi-controller;
- reg = <0xd0020a00 0x1d0>,
- <0xd0021070 0x58>;
- };
diff --git a/Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt b/Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt
new file mode 100644
index 0000000..5fc0313
--- /dev/null
+++ b/Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt
@@ -0,0 +1,38 @@
+Marvell Armada 370, 375, 38x, XP Interrupt Controller
+-----------------------------------------------------
+
+Required properties:
+- compatible: Should be "marvell,mpic"
+- interrupt-controller: Identifies the node as an interrupt controller.
+- msi-controller: Identifies the node as an PCI Message Signaled
+ Interrupt controller.
+- #interrupt-cells: The number of cells to define the interrupts. Should be 1.
+ The cell is the IRQ number
+
+- reg: Should contain PMIC registers location and length. First pair
+ for the main interrupt registers, second pair for the per-CPU
+ interrupt registers. For this last pair, to be compliant with SMP
+ support, the "virtual" must be use (For the record, these registers
+ automatically map to the interrupt controller registers of the
+ current CPU)
+
+Optional properties:
+
+- interrupts: If defined, then it indicates that this MPIC is
+ connected as a slave to another interrupt controller. This is
+ typically the case on Armada 375 and Armada 38x, where the MPIC is
+ connected as a slave to the Cortex-A9 GIC. The provided interrupt
+ indicate to which GIC interrupt the MPIC output is connected.
+
+Example:
+
+ mpic: interrupt-controller@d0020000 {
+ compatible = "marvell,mpic";
+ #interrupt-cells = <1>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ interrupt-controller;
+ msi-controller;
+ reg = <0xd0020a00 0x1d0>,
+ <0xd0021070 0x58>;
+ };
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 9+ messages in thread[parent not found: <1399904860-937-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>]
* Re: [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation [not found] ` <1399904860-937-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> @ 2014-05-12 14:36 ` Thomas Petazzoni [not found] ` <20140512163642.0cac3359-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Thomas Petazzoni @ 2014-05-12 14:36 UTC (permalink / raw) To: Ezequiel Garcia Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Jason Cooper, Gregory Clement, Sebastian Hesselbarth, Thomas Gleixner Dear Ezequiel Garcia, On Mon, 12 May 2014 11:27:40 -0300, Ezequiel Garcia wrote: > Move the devicetree binding documentation to the interrupt-controller > directory, where it belongs. > > Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > --- > .../devicetree/bindings/arm/armada-370-xp-mpic.txt | 38 ---------------------- > .../marvell,armada-370-xp-mpic.txt | 38 ++++++++++++++++++++++ > 2 files changed, 38 insertions(+), 38 deletions(-) > delete mode 100644 Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt > create mode 100644 Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt Reviewed-by: Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20140512163642.0cac3359-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>]
* Re: [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation [not found] ` <20140512163642.0cac3359-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> @ 2014-05-12 14:48 ` Ezequiel Garcia [not found] ` <20140512144838.GA2689-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Ezequiel Garcia @ 2014-05-12 14:48 UTC (permalink / raw) To: Thomas Petazzoni Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Jason Cooper, Gregory Clement, Sebastian Hesselbarth, Thomas Gleixner On 12 May 04:36 PM, Thomas Petazzoni wrote: > On Mon, 12 May 2014 11:27:40 -0300, Ezequiel Garcia wrote: > > Move the devicetree binding documentation to the interrupt-controller > > directory, where it belongs. > > > > Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > > --- > > .../devicetree/bindings/arm/armada-370-xp-mpic.txt | 38 ---------------------- > > .../marvell,armada-370-xp-mpic.txt | 38 ++++++++++++++++++++++ > > 2 files changed, 38 insertions(+), 38 deletions(-) > > delete mode 100644 Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt > > create mode 100644 Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt > > Reviewed-by: Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> Thanks for reviewing! Ouch, before anyone complains, I've just realised I forgot to create the patch with the rename detection flag :-( -- Ezequiel García, Free Electrons Embedded Linux, Kernel and Android Engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20140512144838.GA2689-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org>]
* Re: [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation [not found] ` <20140512144838.GA2689-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org> @ 2014-05-18 23:37 ` Ezequiel Garcia [not found] ` <20140518233757.GA630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Ezequiel Garcia @ 2014-05-18 23:37 UTC (permalink / raw) To: Jason Cooper Cc: Thomas Petazzoni, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Gregory Clement, Sebastian Hesselbarth, Thomas Gleixner On 12 May 11:48 AM, Ezequiel Garcia wrote: > On 12 May 04:36 PM, Thomas Petazzoni wrote: > > On Mon, 12 May 2014 11:27:40 -0300, Ezequiel Garcia wrote: > > > Move the devicetree binding documentation to the interrupt-controller > > > directory, where it belongs. > > > > > > Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTGGXanvQGlWp@public.gmane.orgm> > > > --- > > > .../devicetree/bindings/arm/armada-370-xp-mpic.txt | 38 ---------------------- > > > .../marvell,armada-370-xp-mpic.txt | 38 ++++++++++++++++++++++ > > > 2 files changed, 38 insertions(+), 38 deletions(-) > > > delete mode 100644 Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt > > > create mode 100644 Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt > > > > Reviewed-by: Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > > Thanks for reviewing! > > Ouch, before anyone complains, I've just realised I forgot to create the patch > with the rename detection flag :-( Jason, Would you take this? Thanks, -- Ezequiel García, Free Electrons Embedded Linux, Kernel and Android Engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20140518233757.GA630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org>]
* Re: [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation [not found] ` <20140518233757.GA630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org> @ 2014-05-18 23:40 ` Jason Cooper [not found] ` <20140518234034.GA27822-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Jason Cooper @ 2014-05-18 23:40 UTC (permalink / raw) To: Ezequiel Garcia Cc: Thomas Petazzoni, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Gregory Clement, Sebastian Hesselbarth, Thomas Gleixner On Sun, May 18, 2014 at 08:37:58PM -0300, Ezequiel Garcia wrote: > On 12 May 11:48 AM, Ezequiel Garcia wrote: > > On 12 May 04:36 PM, Thomas Petazzoni wrote: > > > On Mon, 12 May 2014 11:27:40 -0300, Ezequiel Garcia wrote: > > > > Move the devicetree binding documentation to the interrupt-controller > > > > directory, where it belongs. > > > > > > > > Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > > > > --- > > > > .../devicetree/bindings/arm/armada-370-xp-mpic.txt | 38 ---------------------- > > > > .../marvell,armada-370-xp-mpic.txt | 38 ++++++++++++++++++++++ > > > > 2 files changed, 38 insertions(+), 38 deletions(-) > > > > delete mode 100644 Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt > > > > create mode 100644 Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt > > > > > > Reviewed-by: Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > > > > Thanks for reviewing! > > > > Ouch, before anyone complains, I've just realised I forgot to create the patch > > with the rename detection flag :-( > > Jason, > > Would you take this? Sure, my quick read of the above self-reply led me to believe there was another version coming... thx, Jason. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20140518234034.GA27822-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>]
* Re: [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation [not found] ` <20140518234034.GA27822-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org> @ 2014-05-18 23:51 ` Ezequiel Garcia [not found] ` <20140518235148.GB630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Ezequiel Garcia @ 2014-05-18 23:51 UTC (permalink / raw) To: Jason Cooper Cc: Thomas Petazzoni, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Gregory Clement, Sebastian Hesselbarth, Thomas Gleixner On 18 May 07:40 PM, Jason Cooper wrote: > On Sun, May 18, 2014 at 08:37:58PM -0300, Ezequiel Garcia wrote: > > On 12 May 11:48 AM, Ezequiel Garcia wrote: > > > On 12 May 04:36 PM, Thomas Petazzoni wrote: > > > > On Mon, 12 May 2014 11:27:40 -0300, Ezequiel Garcia wrote: > > > > > Move the devicetree binding documentation to the interrupt-controller > > > > > directory, where it belongs. > > > > > > > > > > Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> > > > > > --- > > > > > .../devicetree/bindings/arm/armada-370-xp-mpic.txt | 38 ---------------------- > > > > > .../marvell,armada-370-xp-mpic.txt | 38 ++++++++++++++++++++++ > > > > > 2 files changed, 38 insertions(+), 38 deletions(-) > > > > > delete mode 100644 Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt > > > > > create mode 100644 Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt > > > > > > > > Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> > > > > > > Thanks for reviewing! > > > > > > Ouch, before anyone complains, I've just realised I forgot to create the patch > > > with the rename detection flag :-( > > > > Jason, > > > > Would you take this? > > Sure, my quick read of the above self-reply led me to believe there was > another version coming... > Actually, there was... and then thought maybe you didn't need it. Want me send it? I can do that real quick. -- Ezequiel García, Free Electrons Embedded Linux, Kernel and Android Engineering http://free-electrons.com -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <20140518235148.GB630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org>]
* Re: [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation [not found] ` <20140518235148.GB630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org> @ 2014-05-18 23:54 ` Jason Cooper 0 siblings, 0 replies; 9+ messages in thread From: Jason Cooper @ 2014-05-18 23:54 UTC (permalink / raw) To: Ezequiel Garcia Cc: Thomas Petazzoni, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Gregory Clement, Sebastian Hesselbarth, Thomas Gleixner On Sun, May 18, 2014 at 08:51:48PM -0300, Ezequiel Garcia wrote: > On 18 May 07:40 PM, Jason Cooper wrote: > > On Sun, May 18, 2014 at 08:37:58PM -0300, Ezequiel Garcia wrote: > > > On 12 May 11:48 AM, Ezequiel Garcia wrote: > > > > On 12 May 04:36 PM, Thomas Petazzoni wrote: > > > > > On Mon, 12 May 2014 11:27:40 -0300, Ezequiel Garcia wrote: > > > > > > Move the devicetree binding documentation to the interrupt-controller > > > > > > directory, where it belongs. > > > > > > > > > > > > Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > > > > > > --- > > > > > > .../devicetree/bindings/arm/armada-370-xp-mpic.txt | 38 ---------------------- > > > > > > .../marvell,armada-370-xp-mpic.txt | 38 ++++++++++++++++++++++ > > > > > > 2 files changed, 38 insertions(+), 38 deletions(-) > > > > > > delete mode 100644 Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt > > > > > > create mode 100644 Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt > > > > > > > > > > Reviewed-by: Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > > > > > > > > Thanks for reviewing! > > > > > > > > Ouch, before anyone complains, I've just realised I forgot to create the patch > > > > with the rename detection flag :-( > > > > > > Jason, > > > > > > Would you take this? > > > > Sure, my quick read of the above self-reply led me to believe there was > > another version coming... > > > > Actually, there was... and then thought maybe you didn't need it. > > Want me send it? I can do that real quick. Please do. thx, Jason. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation
@ 2014-05-19 0:02 Ezequiel Garcia
[not found] ` <1400457737-1617-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
0 siblings, 1 reply; 9+ messages in thread
From: Ezequiel Garcia @ 2014-05-19 0:02 UTC (permalink / raw)
To: Jason Cooper, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
devicetree-u79uwXL29TY76Z2rM5mHXA
Cc: Gregory Clement, Thomas Petazzoni, Thomas Gleixner,
Sebastian Hesselbarth, Andrew Lunn, Ezequiel Garcia
Move the devicetree binding documentation to the interrupt-controller
directory, where it belongs.
Reviewed-by: Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
---
.../marvell,armada-370-xp-mpic.txt} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename Documentation/devicetree/bindings/{arm/armada-370-xp-mpic.txt => interrupt-controller/marvell,armada-370-xp-mpic.txt} (100%)
diff --git a/Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt b/Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt
similarity index 100%
rename from Documentation/devicetree/bindings/arm/armada-370-xp-mpic.txt
rename to Documentation/devicetree/bindings/interrupt-controller/marvell,armada-370-xp-mpic.txt
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 9+ messages in thread[parent not found: <1400457737-1617-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>]
* Re: [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation [not found] ` <1400457737-1617-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> @ 2014-05-19 2:10 ` Jason Cooper 0 siblings, 0 replies; 9+ messages in thread From: Jason Cooper @ 2014-05-19 2:10 UTC (permalink / raw) To: Ezequiel Garcia Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Gregory Clement, Thomas Petazzoni, Thomas Gleixner, Sebastian Hesselbarth, Andrew Lunn On Sun, May 18, 2014 at 09:02:17PM -0300, Ezequiel Garcia wrote: > Move the devicetree binding documentation to the interrupt-controller > directory, where it belongs. > > Reviewed-by: Thomas Petazzoni <thomas.petazzoni-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > Signed-off-by: Ezequiel Garcia <ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > --- > .../marvell,armada-370-xp-mpic.txt} | 0 > 1 file changed, 0 insertions(+), 0 deletions(-) > rename Documentation/devicetree/bindings/{arm/armada-370-xp-mpic.txt => interrupt-controller/marvell,armada-370-xp-mpic.txt} (100%) Applied to irqchip/core thx, Jason. -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-05-19 2:10 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-12 14:27 [PATCH] irqchip: armada-370-xp: Move the devicetree binding documentation Ezequiel Garcia
[not found] ` <1399904860-937-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2014-05-12 14:36 ` Thomas Petazzoni
[not found] ` <20140512163642.0cac3359-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2014-05-12 14:48 ` Ezequiel Garcia
[not found] ` <20140512144838.GA2689-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org>
2014-05-18 23:37 ` Ezequiel Garcia
[not found] ` <20140518233757.GA630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org>
2014-05-18 23:40 ` Jason Cooper
[not found] ` <20140518234034.GA27822-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>
2014-05-18 23:51 ` Ezequiel Garcia
[not found] ` <20140518235148.GB630-nAQHv47ARr+vIlHkl8J1cg@public.gmane.org>
2014-05-18 23:54 ` Jason Cooper
-- strict thread matches above, loose matches on Subject: below --
2014-05-19 0:02 Ezequiel Garcia
[not found] ` <1400457737-1617-1-git-send-email-ezequiel.garcia-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2014-05-19 2:10 ` Jason Cooper
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).