Commit edde08f2 authored by Harvey Harrison's avatar Harvey Harrison Committed by Linus Torvalds

misc: removal of final callers using fastcall

Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 144b2a91
...@@ -522,7 +522,7 @@ static struct irq_chip sun4v_virq = { ...@@ -522,7 +522,7 @@ static struct irq_chip sun4v_virq = {
.set_affinity = sun4v_virt_set_affinity, .set_affinity = sun4v_virt_set_affinity,
}; };
static void fastcall pre_flow_handler(unsigned int virt_irq, static void pre_flow_handler(unsigned int virt_irq,
struct irq_desc *desc) struct irq_desc *desc)
{ {
struct irq_handler_data *data = get_irq_chip_data(virt_irq); struct irq_handler_data *data = get_irq_chip_data(virt_irq);
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
* reattempted until it succeeds. * reattempted until it succeeds.
*/ */
static inline void static inline void
__mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) __mutex_fastpath_lock(atomic_t *count, void (*fail_fn)(atomic_t *))
{ {
int __ex_flag, __res; int __ex_flag, __res;
...@@ -44,7 +44,7 @@ __mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) ...@@ -44,7 +44,7 @@ __mutex_fastpath_lock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *))
} }
static inline int static inline int
__mutex_fastpath_lock_retval(atomic_t *count, fastcall int (*fail_fn)(atomic_t *)) __mutex_fastpath_lock_retval(atomic_t *count, int (*fail_fn)(atomic_t *))
{ {
int __ex_flag, __res; int __ex_flag, __res;
...@@ -70,7 +70,7 @@ __mutex_fastpath_lock_retval(atomic_t *count, fastcall int (*fail_fn)(atomic_t * ...@@ -70,7 +70,7 @@ __mutex_fastpath_lock_retval(atomic_t *count, fastcall int (*fail_fn)(atomic_t *
* better generated assembly. * better generated assembly.
*/ */
static inline void static inline void
__mutex_fastpath_unlock(atomic_t *count, fastcall void (*fail_fn)(atomic_t *)) __mutex_fastpath_unlock(atomic_t *count, void (*fail_fn)(atomic_t *))
{ {
int __ex_flag, __res, __orig; int __ex_flag, __res, __orig;
......
...@@ -1451,7 +1451,7 @@ get_page_from_freelist(gfp_t gfp_mask, unsigned int order, ...@@ -1451,7 +1451,7 @@ get_page_from_freelist(gfp_t gfp_mask, unsigned int order,
/* /*
* This is the 'heart' of the zoned buddy allocator. * This is the 'heart' of the zoned buddy allocator.
*/ */
struct page * fastcall struct page *
__alloc_pages(gfp_t gfp_mask, unsigned int order, __alloc_pages(gfp_t gfp_mask, unsigned int order,
struct zonelist *zonelist) struct zonelist *zonelist)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment