* [tip:x86/cleanups] x86, smpboot: Mark the names[] array in __inquire_remote_apic() as const
[not found] <1309482653-23648-1-git-send-email-Gregory.Dietsche@cuw.edu>
@ 2011-07-21 10:10 ` tip-bot for Greg Dietsche
0 siblings, 0 replies; only message in thread
From: tip-bot for Greg Dietsche @ 2011-07-21 10:10 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, Gregory.Dietsche, tglx, mingo
Commit-ID: a6c23905ff0d6bbddf590ef0838489ee0f6c74ac
Gitweb: http://git.kernel.org/tip/a6c23905ff0d6bbddf590ef0838489ee0f6c74ac
Author: Greg Dietsche <Gregory.Dietsche@cuw.edu>
AuthorDate: Thu, 30 Jun 2011 20:10:53 -0500
Committer: Ingo Molnar <mingo@elte.hu>
CommitDate: Thu, 21 Jul 2011 10:04:51 +0200
x86, smpboot: Mark the names[] array in __inquire_remote_apic() as const
This array is read-only. Make it explicit by marking as const.
Signed-off-by: Greg Dietsche <Gregory.Dietsche@cuw.edu>
Link: http://lkml.kernel.org/r/1309482653-23648-1-git-send-email-Gregory.Dietsche@cuw.edu
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
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 a3c430b..e02653a 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -425,7 +425,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;
u32 status;
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-07-21 10:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1309482653-23648-1-git-send-email-Gregory.Dietsche@cuw.edu>
2011-07-21 10:10 ` [tip:x86/cleanups] x86, smpboot: Mark the names[] array in __inquire_remote_apic() as const tip-bot for Greg Dietsche
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox