diff options
author | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2018-06-06 10:11:10 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-09-05 09:26:31 +0200 |
commit | 7c841ea7f8f153f77c63989ceda2355ad0f3e43b (patch) | |
tree | 40eadf003ef29c4b78c9f6efff82b637967c7da4 /arch/sparc | |
parent | 24fab572ae7d09bef6939de602d546be554d2d43 (diff) | |
download | linux-stable-7c841ea7f8f153f77c63989ceda2355ad0f3e43b.tar.gz linux-stable-7c841ea7f8f153f77c63989ceda2355ad0f3e43b.tar.bz2 linux-stable-7c841ea7f8f153f77c63989ceda2355ad0f3e43b.zip |
sparc/time: Add missing __init to init_tick_ops()
[ Upstream commit 6f57ed681ed817a4ec444e83f3aa2ad695d5ef34 ]
Code that was added to force gcc not to inline any function that isn't
explicitly declared as inline uncovered that init_tick_ops() isn't
marked as "__init". It is only called by __init functions and more
importantly it too calls an __init function which would require it to be
__init as well.
Link: http://lkml.kernel.org/r/201806060444.hdHcKOBy%fengguang.wu@intel.com
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/kernel/time_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/kernel/time_64.c b/arch/sparc/kernel/time_64.c index 3b397081047a..83aaf4888999 100644 --- a/arch/sparc/kernel/time_64.c +++ b/arch/sparc/kernel/time_64.c @@ -813,7 +813,7 @@ static void __init get_tick_patch(void) } } -static void init_tick_ops(struct sparc64_tick_ops *ops) +static void __init init_tick_ops(struct sparc64_tick_ops *ops) { unsigned long freq, quotient, tick; |