Re: [PATCH v4 1/2] clk: at91: fix clk-generated parenting

2017-06-01 Thread Stephen Boyd
On 05/30, Alexandre Belloni wrote: > On 18/05/2017 at 18:33:02 -0700, Stephen Boyd wrote: > > On 05/12, Alexandre Belloni wrote: > > > clk_generated_startup is called after clk_hw_register. So the first call > > > to > > > get_parent will not have the correct value (i.e. 0) and because this is > >

Re: [PATCH v4 1/2] clk: at91: fix clk-generated parenting

2017-05-30 Thread Alexandre Belloni
On 18/05/2017 at 18:33:02 -0700, Stephen Boyd wrote: > On 05/12, Alexandre Belloni wrote: > > clk_generated_startup is called after clk_hw_register. So the first call to > > get_parent will not have the correct value (i.e. 0) and because this is > > cached, it may never be updated. > > > > Signed-

Re: [PATCH v4 1/2] clk: at91: fix clk-generated parenting

2017-05-18 Thread Stephen Boyd
On 05/12, Alexandre Belloni wrote: > clk_generated_startup is called after clk_hw_register. So the first call to > get_parent will not have the correct value (i.e. 0) and because this is > cached, it may never be updated. > > Signed-off-by: Alexandre Belloni > --- Fixes tag? -- Qualcomm Innova

[PATCH v4 1/2] clk: at91: fix clk-generated parenting

2017-05-12 Thread Alexandre Belloni
clk_generated_startup is called after clk_hw_register. So the first call to get_parent will not have the correct value (i.e. 0) and because this is cached, it may never be updated. Signed-off-by: Alexandre Belloni --- drivers/clk/at91/clk-generated.c | 3 +-- 1 file changed, 1 insertion(+), 2 de