Re: [U-Boot] [PATCH] clk: initialize clk->data when using default xlate

2019-07-20 Thread sjg
Right now when using clk_of_xlate_default(), clk->data remains un-initialized because clk_get_bulk() does not initialize memory on allocation of clock structure. This can cause problems when data is used to match if two clocks pointers are exactly the same underlying clocks, for example. Fix it b

[U-Boot] [PATCH] clk: initialize clk->data when using default xlate

2019-07-11 Thread Sekhar Nori
Right now when using clk_of_xlate_default(), clk->data remains un-initialized because clk_get_bulk() does not initialize memory on allocation of clock structure. This can cause problems when data is used to match if two clocks pointers are exactly the same underlying clocks, for example. Fix it b