diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-08 07:19:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:31 -0500 |
commit | edde08f2a8f13a648ab6d26f33e88d0c6146f3d1 (patch) | |
tree | 16c0580449068472b7cb2ab3093fda3cc19f18b0 | |
parent | 144b2a91468bdc0d4fa64b220c152fb58b8ffe05 (diff) |
misc: removal of final callers using fastcall
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/sparc64/kernel/irq.c | 2 | ||||
-rw-r--r-- | include/asm-arm/mutex.h | 6 | ||||
-rw-r--r-- | mm/page_alloc.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/arch/sparc64/kernel/irq.c b/arch/sparc64/kernel/irq.c index 30431bd24e1e..5ec06c8c7fea 100644 --- a/arch/sparc64/kernel/irq.c +++ b/arch/sparc64/kernel/irq.c | |||
@@ -522,7 +522,7 @@ static struct irq_chip sun4v_virq = { | |||
522 | .set_affinity = sun4v_virt_set_affinity, | 522 | .set_affinity = sun4v_virt_set_affinity, |
523 | }; | 523 | }; |
524 | 524 | ||
525 | static void fastcall pre_flow_handler(unsigned int virt_irq, | 525 | static void pre_flow_handler(unsigned int virt_irq, |
526 | struct irq_desc *desc) | 526 | struct irq_desc *desc) |
527 | { | 527 | { |
528 | struct irq_handler_data *data = get_irq_chip_data(virt_irq); | 528 | struct irq_handler_data *data = get_irq_chip_data(virt_irq); |
diff --git a/include/asm-arm/mutex.h b/include/asm-arm/mutex.h index cb29d84e690d..020bd98710a1 100644 --- a/include/asm-arm/mutex.h +++ b/include/asm-arm/mutex.h | |||
@@ -24,7 +24,7 @@ | |||
24 | * reattempted until it succeeds. | 24 | * reattempted until it succeeds. |
25 | */ | 25 | */ |
26 | static inline void | 26 | static inline void |
27 | __mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) | 27 | __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *)) |
28 | { | 28 | { |
29 | int __ex_flag, __res; | 29 | int __ex_flag, __res; |
30 | 30 | ||
@@ -44,7 +44,7 @@ __mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) | |||
44 | } | 44 | } |
45 | 45 | ||
46 | static inline int | 46 | static inline int |
47 | __mutex_fastpath_lock_retval(atomic_t *count, fastcall int (*fail_fn)(atomic_t *)) | 47 | __mutex_fastpath_lock_retval(atomic_t *count, int (*fail_fn)(atomic_t *)) |
48 | { | 48 | { |
49 | int __ex_flag, __res; | 49 | int __ex_flag, __res; |
50 | 50 | ||
@@ -70,7 +70,7 @@ __mutex_fastpath_lock_retval(atomic_t *count, fastcall int (*fail_fn)(atomic_t * | |||
70 | * better generated assembly. | 70 | * better generated assembly. |
71 | */ | 71 | */ |
72 | static inline void | 72 | static inline void |
73 | __mutex_fastpath_unlock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) | 73 | __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *)) |
74 | { | 74 | { |
75 | int __ex_flag, __res, __orig; | 75 | int __ex_flag, __res, __orig; |
76 | 76 | ||
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 26a54a17dc9f..75b979313346 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -1451,7 +1451,7 @@ try_next_zone: | |||
1451 | /* | 1451 | /* |
1452 | * This is the 'heart' of the zoned buddy allocator. | 1452 | * This is the 'heart' of the zoned buddy allocator. |
1453 | */ | 1453 | */ |
1454 | struct page * fastcall | 1454 | struct page * |
1455 | __alloc_pages(gfp_t gfp_mask, unsigned int order, | 1455 | __alloc_pages(gfp_t gfp_mask, unsigned int order, |
1456 | struct zonelist *zonelist) | 1456 | struct zonelist *zonelist) |
1457 | { | 1457 | { |