diff options
Diffstat (limited to 'kernel/softirq.c')
-rw-r--r-- | kernel/softirq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index d7837d45419e..5b3aea5f471e 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c | |||
@@ -320,7 +320,7 @@ void irq_exit(void) | |||
320 | /* | 320 | /* |
321 | * This function must run with irqs disabled! | 321 | * This function must run with irqs disabled! |
322 | */ | 322 | */ |
323 | inline fastcall void raise_softirq_irqoff(unsigned int nr) | 323 | inline void raise_softirq_irqoff(unsigned int nr) |
324 | { | 324 | { |
325 | __raise_softirq_irqoff(nr); | 325 | __raise_softirq_irqoff(nr); |
326 | 326 | ||
@@ -337,7 +337,7 @@ inline fastcall void raise_softirq_irqoff(unsigned int nr) | |||
337 | wakeup_softirqd(); | 337 | wakeup_softirqd(); |
338 | } | 338 | } |
339 | 339 | ||
340 | void fastcall raise_softirq(unsigned int nr) | 340 | void raise_softirq(unsigned int nr) |
341 | { | 341 | { |
342 | unsigned long flags; | 342 | unsigned long flags; |
343 | 343 | ||
@@ -363,7 +363,7 @@ struct tasklet_head | |||
363 | static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec) = { NULL }; | 363 | static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec) = { NULL }; |
364 | static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec) = { NULL }; | 364 | static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec) = { NULL }; |
365 | 365 | ||
366 | void fastcall __tasklet_schedule(struct tasklet_struct *t) | 366 | void __tasklet_schedule(struct tasklet_struct *t) |
367 | { | 367 | { |
368 | unsigned long flags; | 368 | unsigned long flags; |
369 | 369 | ||
@@ -376,7 +376,7 @@ void fastcall __tasklet_schedule(struct tasklet_struct *t) | |||
376 | 376 | ||
377 | EXPORT_SYMBOL(__tasklet_schedule); | 377 | EXPORT_SYMBOL(__tasklet_schedule); |
378 | 378 | ||
379 | void fastcall __tasklet_hi_schedule(struct tasklet_struct *t) | 379 | void __tasklet_hi_schedule(struct tasklet_struct *t) |
380 | { | 380 | { |
381 | unsigned long flags; | 381 | unsigned long flags; |
382 | 382 | ||