diff options
author | Helge Deller <deller@gmx.de> | 2018-05-18 16:12:12 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-05-18 16:21:49 +0200 |
commit | 01f56832cfb6fcc204e7203f46841b6185ebd574 (patch) | |
tree | ecff4869736a874e75e557686ab7ad5eb7ed691e /arch | |
parent | 3faf5246f0cd2c1fe82a2c4ba5ad857fa6941909 (diff) |
parisc: Move setup_profiling_timer() out of init section
No other architecture has setup_profiling_timer() in the init section,
thus on parisc we face this section mismatch warning:
Reference from the function devm_device_add_group() to the function .init.text:setup_profiling_timer()
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/parisc/kernel/smp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/parisc/kernel/smp.c b/arch/parisc/kernel/smp.c index 4065b5e48c9d..5e26dbede5fc 100644 --- a/arch/parisc/kernel/smp.c +++ b/arch/parisc/kernel/smp.c @@ -423,8 +423,7 @@ int __cpu_up(unsigned int cpu, struct task_struct *tidle) } #ifdef CONFIG_PROC_FS -int __init -setup_profiling_timer(unsigned int multiplier) +int setup_profiling_timer(unsigned int multiplier) { return -EINVAL; } |