Commit 4e74fd7d authored by Joe Perches's avatar Joe Perches Committed by Benjamin Herrenschmidt

powerpc: Use static const char arrays

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Reviewed-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 410bccf9
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
#include <string.h> #include <string.h>
/* CHRP note section */ /* CHRP note section */
char arch[] = "PowerPC"; static const char arch[] = "PowerPC";
#define N_DESCR 6 #define N_DESCR 6
unsigned int descr[N_DESCR] = { unsigned int descr[N_DESCR] = {
...@@ -33,7 +33,7 @@ unsigned int descr[N_DESCR] = { ...@@ -33,7 +33,7 @@ unsigned int descr[N_DESCR] = {
}; };
/* RPA note section */ /* RPA note section */
char rpaname[] = "IBM,RPA-Client-Config"; static const char rpaname[] = "IBM,RPA-Client-Config";
/* /*
* Note: setting ignore_my_client_config *should* mean that OF ignores * Note: setting ignore_my_client_config *should* mean that OF ignores
......
...@@ -1143,7 +1143,7 @@ static int virq_debug_show(struct seq_file *m, void *private) ...@@ -1143,7 +1143,7 @@ static int virq_debug_show(struct seq_file *m, void *private)
unsigned long flags; unsigned long flags;
struct irq_desc *desc; struct irq_desc *desc;
const char *p; const char *p;
char none[] = "none"; static const char none[] = "none";
int i; int i;
seq_printf(m, "%-5s %-7s %-15s %s\n", "virq", "hwirq", seq_printf(m, "%-5s %-7s %-15s %s\n", "virq", "hwirq",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment