diff options
Diffstat (limited to 'include/asm-arm/mutex.h')
-rw-r--r-- | include/asm-arm/mutex.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 | ||