cpufreq: Remove the ->stop_cpu() driver callback
authorViresh Kumar <viresh.kumar@linaro.org>
Wed, 23 Jun 2021 04:24:42 +0000 (09:54 +0530)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Wed, 30 Jun 2021 16:54:11 +0000 (18:54 +0200)
Now that all users of ->stop_cpu() have been migrated to using other
callbacks, drop it from the core.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
[ rjw: Minor edits in the subject and changelog ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Documentation/cpu-freq/cpu-drivers.rst
Documentation/translations/zh_CN/cpu-freq/cpu-drivers.rst
drivers/cpufreq/cpufreq.c
include/linux/cpufreq.h

index a697278ce19034e87a806912418ecb93379273d5..74fac797c3969bac4a27b2981356f536653c8e2f 100644 (file)
@@ -71,9 +71,6 @@ And optionally
  .exit - A pointer to a per-policy cleanup function called during
  CPU_POST_DEAD phase of cpu hotplug process.
 
- .stop_cpu - A pointer to a per-policy stop function called during
- CPU_DOWN_PREPARE phase of cpu hotplug process.
-
  .suspend - A pointer to a per-policy suspend function which is called
  with interrupts disabled and _after_ the governor is stopped for the
  policy.
index 0ca2cb64666609f534e5c5d932d2c2b3f7b5a0f6..9570e9c9e939765a3f2836eb2b4f219801f38f19 100644 (file)
@@ -76,9 +76,6 @@ CPUfreq核心层注册一个cpufreq_driver结构体。
  .exit - 一个指向per-policy清理函数的指针,该函数在cpu热插拔过程的CPU_POST_DEAD
  阶段被调用。
 
- .stop_cpu - 一个指向per-policy停止函数的指针,该函数在cpu热插拔过程的CPU_DOWN_PREPARE
- 阶段被调用。
-
  .suspend - 一个指向per-policy暂停函数的指针,该函数在关中断且在该策略的调节器停止
  后被调用。
 
index cbab834c37a039ff5aac5134dff98a16bbd68675..5e4b5316d254a431e606c001fcacf794cae04204 100644 (file)
@@ -1606,9 +1606,6 @@ static int cpufreq_offline(unsigned int cpu)
                policy->cdev = NULL;
        }
 
-       if (cpufreq_driver->stop_cpu)
-               cpufreq_driver->stop_cpu(policy);
-
        if (has_target())
                cpufreq_exit_governor(policy);
 
index 353969c7acd35d2aaa9f7be543013603a1d998ae..2e2267a365026aab650fc803356c2cd98a463716 100644 (file)
@@ -371,7 +371,6 @@ struct cpufreq_driver {
        int             (*online)(struct cpufreq_policy *policy);
        int             (*offline)(struct cpufreq_policy *policy);
        int             (*exit)(struct cpufreq_policy *policy);
-       void            (*stop_cpu)(struct cpufreq_policy *policy);
        int             (*suspend)(struct cpufreq_policy *policy);
        int             (*resume)(struct cpufreq_policy *policy);