aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/handle.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2006-06-29 05:24:40 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-06-29 13:26:22 -0400
commit06fcb0c6fb3aae9570a32ac3b72a8222563baa69 (patch)
treec1f9d750a42031434971b2271882b907fd7838f5 /kernel/irq/handle.c
parent2e60bbb6d50de654d8e68f115161e27878b5e72d (diff)
[PATCH] genirq: cleanup: misc code cleanups
Assorted code cleanups to the generic IRQ code. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/irq/handle.c')
-rw-r--r--kernel/irq/handle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c
index 6b313ccf0edd..f9c33a86cbdf 100644
--- a/kernel/irq/handle.c
+++ b/kernel/irq/handle.c
@@ -18,7 +18,7 @@
18 * Linux has a controller-independent interrupt architecture. 18 * Linux has a controller-independent interrupt architecture.
19 * Every controller has a 'controller-template', that is used 19 * Every controller has a 'controller-template', that is used
20 * by the main code to do the right thing. Each driver-visible 20 * by the main code to do the right thing. Each driver-visible
21 * interrupt source is transparently wired to the apropriate 21 * interrupt source is transparently wired to the appropriate
22 * controller. Thus drivers need not be aware of the 22 * controller. Thus drivers need not be aware of the
23 * interrupt-controller. 23 * interrupt-controller.
24 * 24 *
@@ -111,7 +111,7 @@ irqreturn_t handle_IRQ_event(unsigned int irq, struct pt_regs *regs,
111fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs) 111fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs)
112{ 112{
113 irq_desc_t *desc = irq_desc + irq; 113 irq_desc_t *desc = irq_desc + irq;
114 struct irqaction * action; 114 struct irqaction *action;
115 unsigned int status; 115 unsigned int status;
116 116
117 kstat_this_cpu.irqs[irq]++; 117 kstat_this_cpu.irqs[irq]++;