Re: [PATCH RFC v1 1/3] clk: Add function to parse an arbitrary clocks list property

2014-02-24 Thread Sylwester Nawrocki
On 24/02/14 01:43, Mike Turquette wrote: [...] +/** + * of_clk_get_list_entry() - Parse and lookup a clock referenced by a device node + * @np: pointer to clock consumer node + * @list_name: name of the clock list property + * @index: index to the clock list + * + * This function

Re: [PATCH RFC v1 1/3] clk: Add function to parse an arbitrary clocks list property

2014-02-23 Thread Mike Turquette
Quoting Sylwester Nawrocki (2014-02-19 08:58:42) The of_clk_get_list_entry() function is like of_clk_get() except it allows to pass name of a DT property containing list of phandles and clock specifiers. For of_clk_get() it has been hard coded to clocks. Signed-off-by: Sylwester Nawrocki

[PATCH RFC v1 1/3] clk: Add function to parse an arbitrary clocks list property

2014-02-19 Thread Sylwester Nawrocki
The of_clk_get_list_entry() function is like of_clk_get() except it allows to pass name of a DT property containing list of phandles and clock specifiers. For of_clk_get() it has been hard coded to clocks. Signed-off-by: Sylwester Nawrocki s.nawro...@samsung.com Acked-by: Kyungmin Park