diff options
author | Andrew Morton <[email protected]> | 2008-11-18 22:20:10 -0800 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2008-11-19 10:19:16 +0100 |
commit | 60a515132086b2c28a8141d873297fdf7a180ca7 (patch) | |
tree | 5ed80d68d8f711caed6121c56b3c2dc99a545de8 | |
parent | 7f0f598a0069d1ab072375965a4b69137233169c (diff) |
profiling: clean up profile_nop()
Impact: cleanup
No point in inlining this.
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | kernel/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/profile.c b/kernel/profile.c index 5b7d1ac7124c..7f93a5042d3b 100644 --- a/kernel/profile.c +++ b/kernel/profile.c @@ -544,7 +544,7 @@ static const struct file_operations proc_profile_operations = { }; #ifdef CONFIG_SMP -static inline void profile_nop(void *unused) +static void profile_nop(void *unused) { } |