diff options
author | Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | 2024-04-27 08:27:58 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-04-27 20:17:48 +0200 |
commit | 2e5449f4f21a1b0bd9beec4c4b580eb1f9b9ed7f (patch) | |
tree | 69935a9bf4dd4bd07df6ead636445b8dce0cce26 /include | |
parent | Merge tag 'soundwire-6.9-fixes' of git://git.kernel.org/pub/scm/linux/kernel/... (diff) | |
download | linux-2e5449f4f21a1b0bd9beec4c4b580eb1f9b9ed7f.tar.xz linux-2e5449f4f21a1b0bd9beec4c4b580eb1f9b9ed7f.zip |
profiling: Remove create_prof_cpu_mask().
create_prof_cpu_mask() is no longer used after commit 1f44a225777e ("s390:
convert interrupt handling to use generic hardirq").
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/profile.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/profile.h b/include/linux/profile.h index 11db1ec516e2..04ae5ebcb637 100644 --- a/include/linux/profile.h +++ b/include/linux/profile.h @@ -18,13 +18,8 @@ struct proc_dir_entry; struct notifier_block; #if defined(CONFIG_PROFILING) && defined(CONFIG_PROC_FS) -void create_prof_cpu_mask(void); int create_proc_profile(void); #else -static inline void create_prof_cpu_mask(void) -{ -} - static inline int create_proc_profile(void) { return 0; |