summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/mce.h
diff options
context:
space:
mode:
authorBorislav Petkov <bp@suse.de>2016-11-01 17:33:00 +0100
committerThomas Gleixner <tglx@linutronix.de>2016-11-08 17:10:14 +0100
commit79349f529ab1a629b9e43e81b4a5b2c22d1e9a65 (patch)
treee18177025e66837fbfb33a0f42c3f2bb551dfa25 /arch/x86/include/asm/mce.h
parentcd9c57cad3fe89ea949b9266cddc947c0838f7af (diff)
downloadop-kernel-dev-79349f529ab1a629b9e43e81b4a5b2c22d1e9a65.zip
op-kernel-dev-79349f529ab1a629b9e43e81b4a5b2c22d1e9a65.tar.gz
x86/RAS: Simplify SMCA bank descriptor struct
Call the struct simply smca_bank, it's instance ID can be simply ->id. Makes the code much more readable. Signed-off-by: Borislav Petkov <bp@suse.de> Tested-by: Yazen Ghannam <yazen.ghannam@amd.com> Link: http://lkml.kernel.org/r/20161103125556.15482-1-bp@alien8.de 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.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h
index 9bd7ff5..4d97875 100644
--- a/arch/x86/include/asm/mce.h
+++ b/arch/x86/include/asm/mce.h
@@ -371,12 +371,13 @@ struct smca_hwid_mcatype {
u32 xec_bitmap; /* Bitmap of valid ExtErrorCodes; current max is 21. */
};
-struct smca_bank_info {
+struct smca_bank {
struct smca_hwid_mcatype *type;
- u32 type_instance;
+ /* Instance ID */
+ u32 id;
};
-extern struct smca_bank_info smca_banks[MAX_NR_BANKS];
+extern struct smca_bank smca_banks[MAX_NR_BANKS];
#endif
OpenPOWER on IntegriCloud