On 06/30/2011 03:31 PM, Greg Dietsche wrote: > This array is read-only. Make it explicit by marking as const. > > Signed-off-by: Greg Dietsche <Gregory.Dietsche@xxxxxxx> > --- > arch/x86/kernel/smpboot.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c > index 9fd3137..4218569 100644 > --- a/arch/x86/kernel/smpboot.c > +++ b/arch/x86/kernel/smpboot.c > @@ -438,7 +438,7 @@ static void impress_friends(void) > void __inquire_remote_apic(int apicid) > { > unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 }; > - char *names[] = { "ID", "VERSION", "SPIV" }; > + const char const *names[] = { "ID", "VERSION", "SPIV" }; > int timeout; Did you mean "const char * const" here? -hpa -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html