diff options
| author | Viresh Kumar <viresh.kumar@linaro.org> | 2025-01-23 13:09:35 +0530 |
|---|---|---|
| committer | Viresh Kumar <viresh.kumar@linaro.org> | 2025-02-07 09:45:14 +0530 |
| commit | 9a23eb8b2b5d8c5f1129c5a523a786ddd53cd7c9 (patch) | |
| tree | 7f08c2b55760bed36ad821f270bdc992c504b85f /drivers/cpufreq/cpufreq.c | |
| parent | 1f04815057a4c1ca557448b56ad5ab536978540e (diff) | |
cpufreq: Export cpufreq_boost_set_sw()
This will be used directly by cpufreq driver going forward, export it.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'drivers/cpufreq/cpufreq.c')
| -rw-r--r-- | drivers/cpufreq/cpufreq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index eca649d062d0..8dec9d2a1e6e 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -2788,7 +2788,7 @@ EXPORT_SYMBOL_GPL(cpufreq_update_limits); /********************************************************************* * BOOST * *********************************************************************/ -static int cpufreq_boost_set_sw(struct cpufreq_policy *policy, int state) +int cpufreq_boost_set_sw(struct cpufreq_policy *policy, int state) { int ret; @@ -2807,6 +2807,7 @@ static int cpufreq_boost_set_sw(struct cpufreq_policy *policy, int state) return 0; } +EXPORT_SYMBOL_GPL(cpufreq_boost_set_sw); static int cpufreq_boost_trigger_state(int state) { |