diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-11-19 06:20:10 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-19 09:19:16 (GMT) |
commit | 60a515132086b2c28a8141d873297fdf7a180ca7 (patch) | |
tree | 5ed80d68d8f711caed6121c56b3c2dc99a545de8 /kernel | |
parent | 7f0f598a0069d1ab072375965a4b69137233169c (diff) | |
download | linux-fsl-qoriq-60a515132086b2c28a8141d873297fdf7a180ca7.tar.xz |
profiling: clean up profile_nop()
Impact: cleanup
No point in inlining this.
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel')
-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 5b7d1ac..7f93a50 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) { } |