Commit f4ce6eca authored by Borislav Petkov's avatar Borislav Petkov

EDAC: Fix mem_types strings type

This one got forgotten during an earlier cleanup.
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
parent 52addcf9
...@@ -66,7 +66,7 @@ ...@@ -66,7 +66,7 @@
#define EDAC_PCI "PCI" #define EDAC_PCI "PCI"
#define EDAC_DEBUG "DEBUG" #define EDAC_DEBUG "DEBUG"
extern const char *edac_mem_types[]; extern const char * const edac_mem_types[];
#ifdef CONFIG_EDAC_DEBUG #ifdef CONFIG_EDAC_DEBUG
extern int edac_debug_level; extern int edac_debug_level;
......
...@@ -128,7 +128,7 @@ static void edac_mc_dump_mci(struct mem_ctl_info *mci) ...@@ -128,7 +128,7 @@ static void edac_mc_dump_mci(struct mem_ctl_info *mci)
/* /*
* keep those in sync with the enum mem_type * keep those in sync with the enum mem_type
*/ */
const char *edac_mem_types[] = { const char * const edac_mem_types[] = {
"Empty csrow", "Empty csrow",
"Reserved csrow type", "Reserved csrow type",
"Unknown csrow type", "Unknown csrow type",
......
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