diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-08 07:19:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:31 -0500 |
commit | ec7015840ad7a8cdc87f52367ffe9c0b0401d919 (patch) | |
tree | 4d0d7dc6f4ab1e364521a866e0150794d9739a28 /include/linux/preempt.h | |
parent | 9f741cb8fecef923cce1dff820ac6aa78c12d136 (diff) |
Remove fastcall from linux/include
[akpm@linux-foundation.org: coding-style fixes]
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>
Diffstat (limited to 'include/linux/preempt.h')
-rw-r--r-- | include/linux/preempt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/preempt.h b/include/linux/preempt.h index 484988ed301e..23f0c54175cd 100644 --- a/include/linux/preempt.h +++ b/include/linux/preempt.h | |||
@@ -11,8 +11,8 @@ | |||
11 | #include <linux/list.h> | 11 | #include <linux/list.h> |
12 | 12 | ||
13 | #ifdef CONFIG_DEBUG_PREEMPT | 13 | #ifdef CONFIG_DEBUG_PREEMPT |
14 | extern void fastcall add_preempt_count(int val); | 14 | extern void add_preempt_count(int val); |
15 | extern void fastcall sub_preempt_count(int val); | 15 | extern void sub_preempt_count(int val); |
16 | #else | 16 | #else |
17 | # define add_preempt_count(val) do { preempt_count() += (val); } while (0) | 17 | # define add_preempt_count(val) do { preempt_count() += (val); } while (0) |
18 | # define sub_preempt_count(val) do { preempt_count() -= (val); } while (0) | 18 | # define sub_preempt_count(val) do { preempt_count() -= (val); } while (0) |