From 1397a7b4ba03d7d42d29d9f89d191df97eb670f9 Mon Sep 17 00:00:00 2001 From: Aaron Kling Date: Tue, 1 Apr 2025 20:19:38 -0500 Subject: [PATCH] cpufreq: Export disable_cpufreq() This is used by the tegra124-cpufreq driver. Signed-off-by: Aaron Kling --- drivers/cpufreq/cpufreq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index c203e99b532b..aac02b9a8559 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -109,6 +109,7 @@ void disable_cpufreq(void) { off = 1; } +EXPORT_SYMBOL_GPL(disable_cpufreq); static DEFINE_MUTEX(cpufreq_governor_mutex); bool have_governor_per_policy(void)