Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1228394 > unrolled thread
| Started by | Alexander Couzens <lynxis@fe80.eu> |
|---|---|
| First post | 2015-09-19 07:10 +0200 |
| Last post | 2015-09-22 19:40 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 1/2] MIPS: ath79: set missing irq ack handler for ar7100-misc-intc irq chip Alexander Couzens <lynxis@fe80.eu> - 2015-09-19 07:10 +0200
Re: [PATCH 1/2] MIPS: ath79: set missing irq ack handler for ar7100-misc-intc irq chip Thomas Gleixner <tglx@linutronix.de> - 2015-09-22 12:30 +0200
Re: [PATCH 1/2] MIPS: ath79: set missing irq ack handler for ar7100-misc-intc irq chip Ralf Baechle <ralf@linux-mips.org> - 2015-09-22 19:40 +0200
| From | Alexander Couzens <lynxis@fe80.eu> |
|---|---|
| Date | 2015-09-19 07:10 +0200 |
| Subject | [PATCH 1/2] MIPS: ath79: set missing irq ack handler for ar7100-misc-intc irq chip |
| Message-ID | <qaizo-8mG-5@gated-at.bofh.it> |
The irq ack handler was forgotten while introducing OF support.
Only ar71xx and ar933x based devices require it.
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Acked-by: Alban Bedel <albeu@free.fr>
---
arch/mips/ath79/irq.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/arch/mips/ath79/irq.c b/arch/mips/ath79/irq.c
index afb0096..c9c0124 100644
--- a/arch/mips/ath79/irq.c
+++ b/arch/mips/ath79/irq.c
@@ -308,8 +308,16 @@ static int __init ath79_misc_intc_of_init(
return 0;
}
-IRQCHIP_DECLARE(ath79_misc_intc, "qca,ar7100-misc-intc",
- ath79_misc_intc_of_init);
+
+static int __init ar7100_misc_intc_of_init(
+ struct device_node *node, struct device_node *parent)
+{
+ ath79_misc_irq_chip.irq_mask_ack = ar71xx_misc_irq_mask;
+ return ath79_misc_intc_of_init(node, parent);
+}
+
+IRQCHIP_DECLARE(ar7100_misc_intc, "qca,ar7100-misc-intc",
+ ar7100_misc_intc_of_init);
static int __init ar79_cpu_intc_of_init(
struct device_node *node, struct device_node *parent)
--
2.4.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Thomas Gleixner <tglx@linutronix.de> |
|---|---|
| Date | 2015-09-22 12:30 +0200 |
| Subject | Re: [PATCH 1/2] MIPS: ath79: set missing irq ack handler for ar7100-misc-intc irq chip |
| Message-ID | <qbsZI-2zG-21@gated-at.bofh.it> |
| In reply to | #1228394 |
On Sat, 19 Sep 2015, Alexander Couzens wrote: > The irq ack handler was forgotten while introducing OF support. > Only ar71xx and ar933x based devices require it. > > Signed-off-by: Alexander Couzens <lynxis@fe80.eu> > Acked-by: Alban Bedel <albeu@free.fr> Acked-by: Thomas Gleixner <tglx@linutronix.de> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Date | 2015-09-22 19:40 +0200 |
| Subject | Re: [PATCH 1/2] MIPS: ath79: set missing irq ack handler for ar7100-misc-intc irq chip |
| Message-ID | <qbzHP-3Je-17@gated-at.bofh.it> |
| In reply to | #1230059 |
On Tue, Sep 22, 2015 at 12:23:22PM +0200, Thomas Gleixner wrote: > On Sat, 19 Sep 2015, Alexander Couzens wrote: > > > The irq ack handler was forgotten while introducing OF support. > > Only ar71xx and ar933x based devices require it. > > > > Signed-off-by: Alexander Couzens <lynxis@fe80.eu> > > Acked-by: Alban Bedel <albeu@free.fr> > > Acked-by: Thomas Gleixner <tglx@linutronix.de> Thanks, I dropped the older version of the patch from my tree and applied this one. Ralf -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web