Re: [PATCH 4/4] OF: modify function stubs to match proper function declarations.

2013-06-05 Thread Guennadi Liakhovetski
Hi On Tue, 30 Apr 2013, Guennadi Liakhovetski wrote: > of_parse_phandle_with_args() and of_count_phandle_with_args() functions > are declared with their first parameter as const. However, their > respective stubs, used when CONFIG_OF isn't defined, don't have the "const" > modifier. This patch ad

[PATCH 4/4] OF: modify function stubs to match proper function declarations.

2013-04-30 Thread Guennadi Liakhovetski
of_parse_phandle_with_args() and of_count_phandle_with_args() functions are declared with their first parameter as const. However, their respective stubs, used when CONFIG_OF isn't defined, don't have the "const" modifier. This patch adds it to fix the mismatch. Signed-off-by: Guennadi Liakhovetsk