Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+1 -2
+1 -2
arch/parisc/kernel/smp.c
··· 423 423 } 424 424 425 425 #ifdef CONFIG_PROC_FS 426 - int __init 427 - setup_profiling_timer(unsigned int multiplier) 426 + int setup_profiling_timer(unsigned int multiplier) 428 427 { 429 428 return -EINVAL; 430 429 }