diff options
author | Andreas Fenkart <andreas.fenkart@streamunlimited.com> | 2013-05-10 06:21:30 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2013-05-29 05:09:10 -0400 |
commit | d671a605580d2caafc77f1a25bcf8435795df6fe (patch) | |
tree | cad94ffca5b44af28fe51afcabd09cc87b0b0020 /kernel/irq | |
parent | e8bd834f73714378ef110a64287db1b77033c8da (diff) |
genirq: Add kerneldoc for irq_disable.
Document the lazy disable functionality. comment based on changelog of
d209a699a0b975ad
Signed-off-by: Andreas Fenkart <andreas.fenkart@streamunlimited.com>
Cc: balbi@ti.com
Link: http://lkml.kernel.org/r/1368181290-1583-1-git-send-email-andreas.fenkart@streamunlimited.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/irq')
-rw-r--r-- | kernel/irq/chip.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index cbd97ce0b000..a3bb14fbe5c6 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c | |||
@@ -213,6 +213,19 @@ void irq_enable(struct irq_desc *desc) | |||
213 | irq_state_clr_masked(desc); | 213 | irq_state_clr_masked(desc); |
214 | } | 214 | } |
215 | 215 | ||
216 | /** | ||
217 | * irq_disable - Mark interupt disabled | ||
218 | * @desc: irq descriptor which should be disabled | ||
219 | * | ||
220 | * If the chip does not implement the irq_disable callback, we | ||
221 | * use a lazy disable approach. That means we mark the interrupt | ||
222 | * disabled, but leave the hardware unmasked. That's an | ||
223 | * optimization because we avoid the hardware access for the | ||
224 | * common case where no interrupt happens after we marked it | ||
225 | * disabled. If an interrupt happens, then the interrupt flow | ||
226 | * handler masks the line at the hardware level and marks it | ||
227 | * pending. | ||
228 | */ | ||
216 | void irq_disable(struct irq_desc *desc) | 229 | void irq_disable(struct irq_desc *desc) |
217 | { | 230 | { |
218 | irq_state_set_disabled(desc); | 231 | irq_state_set_disabled(desc); |