Re: [PATCH 11/18] ARM: qcom: use const and __initconst for smp_operations

2015-08-24 Thread Andy Gross
On Mon, Aug 24, 2015 at 01:36:11PM +0900, Masahiro Yamada wrote: > The smp_operations structure is not over-written, so add const > qualifier and replace __initdata with __initconst. > > Signed-off-by: Masahiro Yamada > --- Thanks! Reviewed-by: Andy Gross -- Qualcomm Innovation Center, Inc.

[PATCH 11/18] ARM: qcom: use const and __initconst for smp_operations

2015-08-23 Thread Masahiro Yamada
The smp_operations structure is not over-written, so add const qualifier and replace __initdata with __initconst. Signed-off-by: Masahiro Yamada --- arch/arm/mach-qcom/platsmp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-qcom/platsmp.c b/arch/arm/mac