Commit 5048bcba authored by Russell King's avatar Russell King Committed by Russell King
Browse files

[ARM] setup_profiling_timer must not be __init



It's called by writes to /proc/profile, so it must not be marked __init

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 037e20a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -630,7 +630,7 @@ void smp_send_stop(void)
/*
 * not supported here
 */
int __init setup_profiling_timer(unsigned int multiplier)
int setup_profiling_timer(unsigned int multiplier)
{
	return -EINVAL;
}