diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-08 07:19:53 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:31 -0500 |
commit | 7ad5b3a505e68cfdc342933d6e0fc0eaa5e0a4f7 (patch) | |
tree | 6715ffd8df509d3d53dea581bb97418a21bc7cbc /kernel/irq/handle.c | |
parent | fc9b52cd8f5f459b88adcf67c47668425ae31a78 (diff) |
kernel: remove fastcall in kernel/*
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/irq/handle.c')
-rw-r--r-- | kernel/irq/handle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index dc335ad27525..5fa6198e9139 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
@@ -25,7 +25,7 @@ | |||
25 | * | 25 | * |
26 | * Handles spurious and unhandled IRQ's. It also prints a debugmessage. | 26 | * Handles spurious and unhandled IRQ's. It also prints a debugmessage. |
27 | */ | 27 | */ |
28 | void fastcall | 28 | void |
29 | handle_bad_irq(unsigned int irq, struct irq_desc *desc) | 29 | handle_bad_irq(unsigned int irq, struct irq_desc *desc) |
30 | { | 30 | { |
31 | print_irq_desc(irq, desc); | 31 | print_irq_desc(irq, desc); |
@@ -163,7 +163,7 @@ irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action) | |||
163 | * This is the original x86 implementation which is used for every | 163 | * This is the original x86 implementation which is used for every |
164 | * interrupt type. | 164 | * interrupt type. |
165 | */ | 165 | */ |
166 | fastcall unsigned int __do_IRQ(unsigned int irq) | 166 | unsigned int __do_IRQ(unsigned int irq) |
167 | { | 167 | { |
168 | struct irq_desc *desc = irq_desc + irq; | 168 | struct irq_desc *desc = irq_desc + irq; |
169 | struct irqaction *action; | 169 | struct irqaction *action; |