mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
char/nvram: set array of const as const
Some array of const char are not set as const. This patch fix that. Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
987a9f128b
commit
a116eaf1be
1 changed files with 6 additions and 6 deletions
|
@ -496,12 +496,12 @@ static void pc_set_checksum(void)
|
||||||
|
|
||||||
#ifdef CONFIG_PROC_FS
|
#ifdef CONFIG_PROC_FS
|
||||||
|
|
||||||
static char *floppy_types[] = {
|
static const char * const floppy_types[] = {
|
||||||
"none", "5.25'' 360k", "5.25'' 1.2M", "3.5'' 720k", "3.5'' 1.44M",
|
"none", "5.25'' 360k", "5.25'' 1.2M", "3.5'' 720k", "3.5'' 1.44M",
|
||||||
"3.5'' 2.88M", "3.5'' 2.88M"
|
"3.5'' 2.88M", "3.5'' 2.88M"
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *gfx_types[] = {
|
static const char * const gfx_types[] = {
|
||||||
"EGA, VGA, ... (with BIOS)",
|
"EGA, VGA, ... (with BIOS)",
|
||||||
"CGA (40 cols)",
|
"CGA (40 cols)",
|
||||||
"CGA (80 cols)",
|
"CGA (80 cols)",
|
||||||
|
@ -602,7 +602,7 @@ static void atari_set_checksum(void)
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
unsigned char val;
|
unsigned char val;
|
||||||
char *name;
|
const char *name;
|
||||||
} boot_prefs[] = {
|
} boot_prefs[] = {
|
||||||
{ 0x80, "TOS" },
|
{ 0x80, "TOS" },
|
||||||
{ 0x40, "ASV" },
|
{ 0x40, "ASV" },
|
||||||
|
@ -611,7 +611,7 @@ static struct {
|
||||||
{ 0x00, "unspecified" }
|
{ 0x00, "unspecified" }
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *languages[] = {
|
static const char * const languages[] = {
|
||||||
"English (US)",
|
"English (US)",
|
||||||
"German",
|
"German",
|
||||||
"French",
|
"French",
|
||||||
|
@ -623,7 +623,7 @@ static char *languages[] = {
|
||||||
"Swiss (German)"
|
"Swiss (German)"
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *dateformat[] = {
|
static const char * const dateformat[] = {
|
||||||
"MM%cDD%cYY",
|
"MM%cDD%cYY",
|
||||||
"DD%cMM%cYY",
|
"DD%cMM%cYY",
|
||||||
"YY%cMM%cDD",
|
"YY%cMM%cDD",
|
||||||
|
@ -634,7 +634,7 @@ static char *dateformat[] = {
|
||||||
"7 (undefined)"
|
"7 (undefined)"
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *colors[] = {
|
static const char * const colors[] = {
|
||||||
"2", "4", "16", "256", "65536", "??", "??", "??"
|
"2", "4", "16", "256", "65536", "??", "??", "??"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue