RE: [PATCH] clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure

2018-07-26 Thread Stephen Boyd
x-kernel@vger.kernel.org; Rajan Vaja > > > > Subject: Re: [PATCH] clk: clk-fixed-factor: Clear OF_POPULATED flag in case > > of > > failure > > > > Quoting Rajan Vaja (2018-07-17 06:17:00) > > > Fixed factor clock has two initializations at of_clk_init() time

RE: [PATCH] clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure

2018-07-26 Thread Rajan Vaja
k-fixed-factor: Clear OF_POPULATED flag in case of > failure > > Quoting Rajan Vaja (2018-07-17 06:17:00) > > Fixed factor clock has two initializations at of_clk_init() time > > and during platform driver probe. Before of_clk_init() call, > > node is marked as populated an

Re: [PATCH] clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure

2018-07-25 Thread Stephen Boyd
Quoting Rajan Vaja (2018-07-17 06:17:00) > Fixed factor clock has two initializations at of_clk_init() time > and during platform driver probe. Before of_clk_init() call, > node is marked as populated and so its probe never gets called. > > During of_clk_init() fixed factor clock registration may

Re: [PATCH] clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure

2018-07-25 Thread Stephen Boyd
Quoting Rajan Vaja (2018-07-17 06:17:00) > Fixed factor clock has two initializations at of_clk_init() time > and during platform driver probe. Before of_clk_init() call, > node is marked as populated and so its probe never gets called. > > During of_clk_init() fixed factor clock registration may

[PATCH] clk: clk-fixed-factor: Clear OF_POPULATED flag in case of failure

2018-07-17 Thread Rajan Vaja
Fixed factor clock has two initializations at of_clk_init() time and during platform driver probe. Before of_clk_init() call, node is marked as populated and so its probe never gets called. During of_clk_init() fixed factor clock registration may fail if any of its parent clock is not registered.