summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/mce.h
diff options
context:
space:
mode:
authorBorislav Petkov2016-11-03 21:12:33 +0100
committerThomas Gleixner2016-11-08 17:10:15 +0100
commitc09a8c40e0a0b4994925ac8eba91b85d76f440a3 (patch)
tree731e8955703d1c2f1ddc35376495a784febdfc60 /arch/x86/include/asm/mce.h
parentx86/RAS: Rename smca_bank_names to smca_names (diff)
downloadkernel-qcow2-linux-c09a8c40e0a0b4994925ac8eba91b85d76f440a3.tar.gz
kernel-qcow2-linux-c09a8c40e0a0b4994925ac8eba91b85d76f440a3.tar.xz
kernel-qcow2-linux-c09a8c40e0a0b4994925ac8eba91b85d76f440a3.zip
x86/RAS: Hide SMCA bank names
Add accessor functions and hide the smca_names array. Also, add a sanity-check to bank HWID assignment in get_smca_bank_info(). Signed-off-by: Borislav Petkov <bp@suse.de> Link: http://lkml.kernel.org/r/20161104152317.5r276t35df53qk76@pd.tnic Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/include/asm/mce.h')
-rw-r--r--arch/x86/include/asm/mce.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h
index 8ffd21596dd7..748b8da8e627 100644
--- a/arch/x86/include/asm/mce.h
+++ b/arch/x86/include/asm/mce.h
@@ -356,13 +356,6 @@ enum smca_bank_types {
N_SMCA_BANK_TYPES
};
-struct smca_bank_name {
- const char *name; /* Short name for sysfs */
- const char *long_name; /* Long name for pretty-printing */
-};
-
-extern struct smca_bank_name smca_names[N_SMCA_BANK_TYPES];
-
#define HWID_MCATYPE(hwid, mcatype) ((hwid << 16) | mcatype)
struct smca_hwid {
@@ -379,6 +372,7 @@ struct smca_bank {
extern struct smca_bank smca_banks[MAX_NR_BANKS];
+extern const char *smca_get_long_name(enum smca_bank_types t);
#endif
#endif /* _ASM_X86_MCE_H */