aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2014-09-15 17:15:04 -0400
committerTony Lindgren <tony@atomide.com>2014-09-16 17:44:59 -0400
commit503b8d12e7462df0aea9b31ab65ac17b538540c9 (patch)
treeb91dacc51c4b8ccaaa8973f537fa72105ab65d7b
parent6bd0f16e322b4572fe1e0ff3b0e78c800c2633b4 (diff)
irqchip: omap-intc: comment style cleanup
no functional changes, just making sure comment follows Coding Style. Acked-by: Jason Cooper <jason@lakedaemon.net> Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r--drivers/irqchip/irq-omap-intc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-omap-intc.c b/drivers/irqchip/irq-omap-intc.c
index 2933760f95aa..f4d562ee3f29 100644
--- a/drivers/irqchip/irq-omap-intc.c
+++ b/drivers/irqchip/irq-omap-intc.c
@@ -326,9 +326,11 @@ out:
326 } 326 }
327 } while (irqnr); 327 } while (irqnr);
328 328
329 /* If an irq is masked or deasserted while active, we will 329 /*
330 * If an irq is masked or deasserted while active, we will
330 * keep ending up here with no irq handled. So remove it from 331 * keep ending up here with no irq handled. So remove it from
331 * the INTC with an ack.*/ 332 * the INTC with an ack.
333 */
332 if (!handled_irq) 334 if (!handled_irq)
333 omap_ack_irq(NULL); 335 omap_ack_irq(NULL);
334} 336}