[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <175325505624.1420.2572890421381994075.tip-bot2@tip-bot2>
Date: Wed, 23 Jul 2025 07:17:36 -0000
From: "tip-bot2 for Daniel Lezcano" <tip-bot2@...utronix.de>
To: linux-tip-commits@...r.kernel.org
Cc: Will McVicker <willmcvicker@...gle.com>, John Stultz <jstultz@...gle.com>,
Thomas Gleixner <tglx@...utronix.de>, Carlos Llamas <cmllamas@...gle.com>,
Daniel Lezcano <daniel.lezcano@...aro.org>, x86@...nel.org,
linux-kernel@...r.kernel.org
Subject: [tip: timers/clocksource] time/sched_clock: Export symbol for
sched_clock register function
The following commit has been merged into the timers/clocksource branch of tip:
Commit-ID: 1bc6a9b86eaa9d9da346ce4c137952c1782ac94d
Gitweb: https://git.kernel.org/tip/1bc6a9b86eaa9d9da346ce4c137952c1782ac94d
Author: Daniel Lezcano <daniel.lezcano@...aro.org>
AuthorDate: Mon, 02 Jun 2025 17:18:51 +02:00
Committer: Daniel Lezcano <daniel.lezcano@...aro.org>
CommitterDate: Thu, 10 Jul 2025 11:28:29 +02:00
time/sched_clock: Export symbol for sched_clock register function
The timer drivers could be converted into modules. The different
functions to register the clocksource or the clockevent are already
exporting their symbols for modules but the sched_clock_register()
function is missing.
Export the symbols so the drivers using this function can be converted
into modules.
Reviewed-by: Will McVicker <willmcvicker@...gle.com>
Acked-by: John Stultz <jstultz@...gle.com>
Reviewed-by: Thomas Gleixner <tglx@...utronix.de>
Reviewed-by: Carlos Llamas <cmllamas@...gle.com>
Link: https://lore.kernel.org/r/20250602151853.1942521-8-daniel.lezcano@linaro.org
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
---
kernel/time/sched_clock.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/time/sched_clock.c b/kernel/time/sched_clock.c
index cc15fe2..cc1afec 100644
--- a/kernel/time/sched_clock.c
+++ b/kernel/time/sched_clock.c
@@ -174,8 +174,7 @@ static enum hrtimer_restart sched_clock_poll(struct hrtimer *hrt)
return HRTIMER_RESTART;
}
-void __init
-sched_clock_register(u64 (*read)(void), int bits, unsigned long rate)
+void sched_clock_register(u64 (*read)(void), int bits, unsigned long rate)
{
u64 res, wrap, new_mask, new_epoch, cyc, ns;
u32 new_mult, new_shift;
@@ -247,6 +246,7 @@ sched_clock_register(u64 (*read)(void), int bits, unsigned long rate)
pr_debug("Registered %pS as sched_clock source\n", read);
}
+EXPORT_SYMBOL_GPL(sched_clock_register);
void __init generic_sched_clock_init(void)
{
Powered by blists - more mailing lists