[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-120fc3fbb7787fb70240190cc9c113d1f6523c42@git.kernel.org>
Date: Fri, 10 Nov 2017 01:41:27 -0800
From: tip-bot for Dou Liyang <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: torvalds@...ux-foundation.org, linux-kernel@...r.kernel.org,
douly.fnst@...fujitsu.com, peterz@...radead.org,
tglx@...utronix.de, mingo@...nel.org, hpa@...or.com
Subject: [tip:x86/timers] x86/tsc: Mark cyc2ns_init() and detect_art()
__init
Commit-ID: 120fc3fbb7787fb70240190cc9c113d1f6523c42
Gitweb: https://git.kernel.org/tip/120fc3fbb7787fb70240190cc9c113d1f6523c42
Author: Dou Liyang <douly.fnst@...fujitsu.com>
AuthorDate: Wed, 8 Nov 2017 18:09:52 +0800
Committer: Ingo Molnar <mingo@...nel.org>
CommitDate: Fri, 10 Nov 2017 10:02:08 +0100
x86/tsc: Mark cyc2ns_init() and detect_art() __init
These two functions are only called by tsc_init(), which is an __init
function during boot time, so mark them __init as well.
Signed-off-by: Dou Liyang <douly.fnst@...fujitsu.com>
Acked-by: Thomas Gleixner <tglx@...utronix.de>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>
Cc: Peter Zijlstra <peterz@...radead.org>
Link: http://lkml.kernel.org/r/1510135792-17429-1-git-send-email-douly.fnst@cn.fujitsu.com
Signed-off-by: Ingo Molnar <mingo@...nel.org>
---
arch/x86/kernel/tsc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index f1326c0..416de29 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -112,7 +112,7 @@ static void cyc2ns_data_init(struct cyc2ns_data *data)
data->cyc2ns_offset = 0;
}
-static void cyc2ns_init(int cpu)
+static void __init cyc2ns_init(int cpu)
{
struct cyc2ns *c2n = &per_cpu(cyc2ns, cpu);
@@ -955,7 +955,7 @@ core_initcall(cpufreq_register_tsc_scaling);
/*
* If ART is present detect the numerator:denominator to convert to TSC
*/
-static void detect_art(void)
+static void __init detect_art(void)
{
unsigned int unused[2];
Powered by blists - more mailing lists