Message ID | 20240907080701.102266-1-zhangzekun11@huawei.com (mailing list archive) |
---|---|
State | New |
Delegated to: | viresh kumar |
Headers | show |
Series | OPP: Remove unused declarations in header file | expand |
On 07-09-24, 16:07, Zhang Zekun wrote: > The definition of _update_set_required_opps() has been removed since > commit e37440e7e2c2 ("OPP: Call dev_pm_opp_set_opp() for required > OPPs"). > > Besides, the definition of _put_opp_list_kref() has been removed since > commit 03758d60265c ("opp: Replace list_kref with a local counter"). > Let's remove the empty declarations in header file. > > Signed-off-by: Zhang Zekun <zhangzekun11@huawei.com> > --- > drivers/opp/opp.h | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/drivers/opp/opp.h b/drivers/opp/opp.h > index 318a4ecbabf1..641e4bccf68e 100644 > --- a/drivers/opp/opp.h > +++ b/drivers/opp/opp.h > @@ -263,9 +263,7 @@ int _opp_add(struct device *dev, struct dev_pm_opp *new_opp, struct opp_table *o > int _opp_add_v1(struct opp_table *opp_table, struct device *dev, struct dev_pm_opp_data *data, bool dynamic); > void _dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask, int last_cpu); > struct opp_table *_add_opp_table_indexed(struct device *dev, int index, bool getclk); > -void _put_opp_list_kref(struct opp_table *opp_table); > void _required_opps_available(struct dev_pm_opp *opp, int count); > -void _update_set_required_opps(struct opp_table *opp_table); > > static inline bool lazy_linking_pending(struct opp_table *opp_table) > { Applied. Thanks.
diff --git a/drivers/opp/opp.h b/drivers/opp/opp.h index 318a4ecbabf1..641e4bccf68e 100644 --- a/drivers/opp/opp.h +++ b/drivers/opp/opp.h @@ -263,9 +263,7 @@ int _opp_add(struct device *dev, struct dev_pm_opp *new_opp, struct opp_table *o int _opp_add_v1(struct opp_table *opp_table, struct device *dev, struct dev_pm_opp_data *data, bool dynamic); void _dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask, int last_cpu); struct opp_table *_add_opp_table_indexed(struct device *dev, int index, bool getclk); -void _put_opp_list_kref(struct opp_table *opp_table); void _required_opps_available(struct dev_pm_opp *opp, int count); -void _update_set_required_opps(struct opp_table *opp_table); static inline bool lazy_linking_pending(struct opp_table *opp_table) {
The definition of _update_set_required_opps() has been removed since commit e37440e7e2c2 ("OPP: Call dev_pm_opp_set_opp() for required OPPs"). Besides, the definition of _put_opp_list_kref() has been removed since commit 03758d60265c ("opp: Replace list_kref with a local counter"). Let's remove the empty declarations in header file. Signed-off-by: Zhang Zekun <zhangzekun11@huawei.com> --- drivers/opp/opp.h | 2 -- 1 file changed, 2 deletions(-)