Re: [PATCH RFC v3 1/2] clk: Add function parsing arbitrary clock list DT property

2014-03-27 Thread Sylwester Nawrocki
Hi Bart, On 27/03/14 18:17, Bartlomiej Zolnierkiewicz wrote: >> +struct clk *of_clk_get_by_property(struct device_node *np, > > This causes build brake with s3c6400_defconfig > (it should be 'static inline'). Thanks for reporting it, I assume you meant "build break"? ;) Will fix that and similar

Re: [PATCH RFC v3 1/2] clk: Add function parsing arbitrary clock list DT property

2014-03-27 Thread Bartlomiej Zolnierkiewicz
Hi Sylwester, On Thursday, March 27, 2014 01:16:18 PM Sylwester Nawrocki wrote: > The of_clk_get_by_property() function added by this patch is similar to > of_clk_get(), except it allows to pass name of a DT property containing > list of phandles and clock specifiers. For of_clk_get() this has be

[PATCH RFC v3 1/2] clk: Add function parsing arbitrary clock list DT property

2014-03-27 Thread Sylwester Nawrocki
The of_clk_get_by_property() function added by this patch is similar to of_clk_get(), except it allows to pass name of a DT property containing list of phandles and clock specifiers. For of_clk_get() this has been hard coded to "clocks". Signed-off-by: Sylwester Nawrocki --- Changes since v2: -