Commit bb75efdd authored by Russell King's avatar Russell King Committed by Rusty Russell

oprofile: Thou shalt not call __exit functions from __init functions

Impact: fix ref to discarded function

`buffer_sync_cleanup' referenced in section `.init.text' of arch/arm/oprofile/built-in.o: defined in discarded section `.exit.text' of arch/arm/oprofile/built-in.o
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 97c12f85
......@@ -574,7 +574,7 @@ int __init buffer_sync_init(void)
return 0;
}
void __exit buffer_sync_cleanup(void)
void buffer_sync_cleanup(void)
{
free_cpumask_var(marked_cpus);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment