Skip to content

Commit

Permalink
irqchip: intc-irqpin: Add force comments
Browse files Browse the repository at this point in the history
Add comments to describe the special case for
"force" versions of enable and disable functions.

Signed-off-by: Magnus Damm <damm@opensource.se>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
  • Loading branch information
Magnus Damm authored and Simon Horman committed Mar 18, 2013
1 parent 33f958f commit d1b6aec
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/irqchip/irq-renesas-intc-irqpin.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,11 @@ static void intc_irqpin_irq_enable_force(struct irq_data *d)
int irq = p->irq[irqd_to_hwirq(d)].requested_irq;

intc_irqpin_irq_enable(d);

/* enable interrupt through parent interrupt controller,
* assumes non-shared interrupt with 1:1 mapping
* needed for busted IRQs on some SoCs like sh73a0
*/
irq_get_chip(irq)->irq_unmask(irq_get_irq_data(irq));
}

Expand All @@ -207,6 +212,10 @@ static void intc_irqpin_irq_disable_force(struct irq_data *d)
struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d);
int irq = p->irq[irqd_to_hwirq(d)].requested_irq;

/* disable interrupt through parent interrupt controller,
* assumes non-shared interrupt with 1:1 mapping
* needed for busted IRQs on some SoCs like sh73a0
*/
irq_get_chip(irq)->irq_mask(irq_get_irq_data(irq));
intc_irqpin_irq_disable(d);
}
Expand Down

0 comments on commit d1b6aec

Please sign in to comment.