Message ID | 1617692459-35670-1-git-send-email-zhangshaokun@hisilicon.com |
---|---|
State | Accepted |
Commit | 60943bbdb42e966aa4d50d587913721b95208fef |
Headers | show |
Series | cpufreq: Remove unused for_each_policy macro | expand |
On Tue, Apr 6, 2021 at 9:06 AM Viresh Kumar <viresh.kumar@linaro.org> wrote: > > On 06-04-21, 15:00, Shaokun Zhang wrote: > > macro 'for_each_policy' has become unused since commit > > f963735a3ca3 ("cpufreq: Create for_each_{in}active_policy()"), > > Remove it. > > > > Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net> > > Cc: Viresh Kumar <viresh.kumar@linaro.org> > > Signed-off-by: Shaokun Zhang <zhangshaokun@hisilicon.com> > > --- > > drivers/cpufreq/cpufreq.c | 3 --- > > 1 file changed, 3 deletions(-) > > > > diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c > > index 1d1b563cea4b..802abc925b2a 100644 > > --- a/drivers/cpufreq/cpufreq.c > > +++ b/drivers/cpufreq/cpufreq.c > > @@ -42,9 +42,6 @@ static LIST_HEAD(cpufreq_policy_list); > > #define for_each_inactive_policy(__policy) \ > > for_each_suitable_policy(__policy, false) > > > > -#define for_each_policy(__policy) \ > > - list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) > > - > > /* Iterate over governors */ > > static LIST_HEAD(cpufreq_governor_list); > > #define for_each_governor(__governor) \ > > Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Applied as 5.13 material, thanks!
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 1d1b563cea4b..802abc925b2a 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -42,9 +42,6 @@ static LIST_HEAD(cpufreq_policy_list); #define for_each_inactive_policy(__policy) \ for_each_suitable_policy(__policy, false) -#define for_each_policy(__policy) \ - list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) - /* Iterate over governors */ static LIST_HEAD(cpufreq_governor_list); #define for_each_governor(__governor) \
macro 'for_each_policy' has become unused since commit f963735a3ca3 ("cpufreq: Create for_each_{in}active_policy()"), Remove it. Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net> Cc: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Shaokun Zhang <zhangshaokun@hisilicon.com> --- drivers/cpufreq/cpufreq.c | 3 --- 1 file changed, 3 deletions(-)