Re: [PATCH 2/2] PM / Domains: Fix return value of of_genpd_opp_to_performance_state()

From: Ulf Hansson
Date: Thu Jun 14 2018 - 03:15:07 EST


On 14 June 2018 at 07:23, Viresh Kumar <viresh.kumar@xxxxxxxxxx> wrote:
> of_genpd_opp_to_performance_state() should return 0 for errors, but the
> dummy routine isn't doing that. Fix it.
>
> Signed-off-by: Viresh Kumar <viresh.kumar@xxxxxxxxxx>

Acked-by: Ulf Hansson <ulf.hansson@xxxxxxxxxx>

Kind regards
Uffe

> ---
> include/linux/pm_domain.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h
> index 9206a4fef9ac..139f79c8477a 100644
> --- a/include/linux/pm_domain.h
> +++ b/include/linux/pm_domain.h
> @@ -276,7 +276,7 @@ static inline unsigned int
> of_genpd_opp_to_performance_state(struct device *dev,
> struct device_node *opp_node)
> {
> - return -ENODEV;
> + return 0;
> }
>
> static inline int genpd_dev_pm_attach(struct device *dev)
> --
> 2.18.0.rc1.242.g61856ae69a2c
>