Re: [PATCH 3/8] clk: Constify pointers to parent names in init data

2015-04-09 Thread Krzysztof Kozlowski
2015-04-09 1:36 GMT+02:00 Stephen Boyd sb...@codeaurora.org: On 04/08/15 06:22, Krzysztof Kozlowski wrote: The 'parent_names' member of 'clk_init_data' is not modified so it can be made as an array of const pointers to constant strings. Some drivers (e.g. arch/mips/alchemy/common/clock.c)

[PATCH 3/8] clk: Constify pointers to parent names in init data

2015-04-08 Thread Krzysztof Kozlowski
The 'parent_names' member of 'clk_init_data' is not modified so it can be made as an array of const pointers to constant strings. Some drivers (e.g. arch/mips/alchemy/common/clock.c) already pass such data. Signed-off-by: Krzysztof Kozlowski k.kozlow...@samsung.com ---

Re: [PATCH 3/8] clk: Constify pointers to parent names in init data

2015-04-08 Thread Stephen Boyd
On 04/08/15 06:22, Krzysztof Kozlowski wrote: The 'parent_names' member of 'clk_init_data' is not modified so it can be made as an array of const pointers to constant strings. Some drivers (e.g. arch/mips/alchemy/common/clock.c) already pass such data. Signed-off-by: Krzysztof Kozlowski