Geert Uytterhoeven <[email protected]> writes: > Signed-off-by: Geert Uytterhoeven <[email protected]>
Acked-by: Kevin Hilman <[email protected]> Though I tend to prefer a brief changlog that answers "why", even if it may seem obvious. Kevin > --- > drivers/base/power/domain.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c > index 40bc2f4072cc28ea..28d6e8bf746c4683 100644 > --- a/drivers/base/power/domain.c > +++ b/drivers/base/power/domain.c > @@ -753,9 +753,9 @@ static inline void genpd_power_off_work_fn(struct > work_struct *work) {} > * pm_genpd_present - Check if the given PM domain has been initialized. > * @genpd: PM domain to check. > */ > -static bool pm_genpd_present(struct generic_pm_domain *genpd) > +static bool pm_genpd_present(const struct generic_pm_domain *genpd) > { > - struct generic_pm_domain *gpd; > + const struct generic_pm_domain *gpd; > > if (IS_ERR_OR_NULL(genpd)) > return false; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

