Message ID | 533b52e0ea175bf6bb893370c7f8c0309aae235a.1493104411.git.viresh.kumar@linaro.org (mailing list archive) |
---|---|
State | Mainlined |
Delegated to: | Rafael Wysocki |
Headers | show |
On 25 April 2017 at 09:18, Viresh Kumar <viresh.kumar@linaro.org> wrote: > The power-domain provider's #power-domain-cells field is set to 0 and > yet the children is using an index to point the power domain. Fix it by > removing the index field. > > Fixes: 70bb510e4279 ("dt/bindings / PM/Domains: Update binding for PM domain idle states") > Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Kind regards Uffe > --- > Documentation/devicetree/bindings/power/power_domain.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/power/power_domain.txt b/Documentation/devicetree/bindings/power/power_domain.txt > index 940707d095cc..14bd9e945ff6 100644 > --- a/Documentation/devicetree/bindings/power/power_domain.txt > +++ b/Documentation/devicetree/bindings/power/power_domain.txt > @@ -81,7 +81,7 @@ domain provided by the 'parent' power controller. > child: power-controller@12341000 { > compatible = "foo,power-controller"; > reg = <0x12341000 0x1000>; > - power-domains = <&parent 0>; > + power-domains = <&parent>; > #power-domain-cells = <0>; > domain-idle-states = <&DOMAIN_PWR_DN>; > }; > -- > 2.12.0.432.g71c3a4f4ba37 >
On Tue, Apr 25, 2017 at 12:48:21PM +0530, Viresh Kumar wrote: > The power-domain provider's #power-domain-cells field is set to 0 and > yet the children is using an index to point the power domain. Fix it by > removing the index field. > > Fixes: 70bb510e4279 ("dt/bindings / PM/Domains: Update binding for PM domain idle states") > Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> > --- > Documentation/devicetree/bindings/power/power_domain.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked-by: Rob Herring <robh@kernel.org>
diff --git a/Documentation/devicetree/bindings/power/power_domain.txt b/Documentation/devicetree/bindings/power/power_domain.txt index 940707d095cc..14bd9e945ff6 100644 --- a/Documentation/devicetree/bindings/power/power_domain.txt +++ b/Documentation/devicetree/bindings/power/power_domain.txt @@ -81,7 +81,7 @@ domain provided by the 'parent' power controller. child: power-controller@12341000 { compatible = "foo,power-controller"; reg = <0x12341000 0x1000>; - power-domains = <&parent 0>; + power-domains = <&parent>; #power-domain-cells = <0>; domain-idle-states = <&DOMAIN_PWR_DN>; };
The power-domain provider's #power-domain-cells field is set to 0 and yet the children is using an index to point the power domain. Fix it by removing the index field. Fixes: 70bb510e4279 ("dt/bindings / PM/Domains: Update binding for PM domain idle states") Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> --- Documentation/devicetree/bindings/power/power_domain.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)