Re: [U-Boot] [PATCH v2] dm: clk: Remove simple version of clk_get_by_index/name()

2016-07-19 Thread Michal Simek
Hi Simon, On 18.7.2016 13:20, Simon Glass wrote: > Hi Michal, > > On 18 July 2016 at 00:57, Michal Simek wrote: >> Hi Simon, >> >> On 15.7.2016 17:43, Stephen Warren wrote: >>> On 07/15/2016 01:02 AM, Michal Simek wrote: Simple version of clk_get_by_index() added

Re: [U-Boot] [PATCH v2] dm: clk: Remove simple version of clk_get_by_index/name()

2016-07-18 Thread Simon Glass
Hi Michal, On 18 July 2016 at 00:57, Michal Simek wrote: > Hi Simon, > > On 15.7.2016 17:43, Stephen Warren wrote: >> On 07/15/2016 01:02 AM, Michal Simek wrote: >>> Simple version of clk_get_by_index() added by: >>> "dm: clk: Add a simple version of clk_get_by_index()"

Re: [U-Boot] [PATCH v2] dm: clk: Remove simple version of clk_get_by_index/name()

2016-07-18 Thread Michal Simek
Hi Simon, On 15.7.2016 17:43, Stephen Warren wrote: > On 07/15/2016 01:02 AM, Michal Simek wrote: >> Simple version of clk_get_by_index() added by: >> "dm: clk: Add a simple version of clk_get_by_index()" >> (sha1: a4b10c088c4f6ef2e2bba33e8cfea369bcbbce44) >> is only working for #clock-cells=<1>

Re: [U-Boot] [PATCH v2] dm: clk: Remove simple version of clk_get_by_index/name()

2016-07-15 Thread Stephen Warren
On 07/15/2016 01:02 AM, Michal Simek wrote: Simple version of clk_get_by_index() added by: "dm: clk: Add a simple version of clk_get_by_index()" (sha1: a4b10c088c4f6ef2e2bba33e8cfea369bcbbce44) is only working for #clock-cells=<1> but not for any other values. Fixed clocks is using

[U-Boot] [PATCH v2] dm: clk: Remove simple version of clk_get_by_index/name()

2016-07-15 Thread Michal Simek
Simple version of clk_get_by_index() added by: "dm: clk: Add a simple version of clk_get_by_index()" (sha1: a4b10c088c4f6ef2e2bba33e8cfea369bcbbce44) is only working for #clock-cells=<1> but not for any other values. Fixed clocks is using #clock-cells=<0> which requires full implementation.