aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/edac/edac_mce_amd.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/edac/edac_mce_amd.c b/drivers/edac/edac_mce_amd.c
index bae9351e9473..352dcc6c8971 100644
--- a/drivers/edac/edac_mce_amd.c
+++ b/drivers/edac/edac_mce_amd.c
@@ -426,11 +426,15 @@ static struct notifier_block amd_mce_dec_nb = {
426static int __init mce_amd_init(void) 426static int __init mce_amd_init(void)
427{ 427{
428 /* 428 /*
429 * We can decode MCEs for Opteron and later CPUs: 429 * We can decode MCEs for K8, F10h and F11h CPUs:
430 */ 430 */
431 if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && 431 if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
432 (boot_cpu_data.x86 >= 0xf)) 432 return 0;
433 atomic_notifier_chain_register(&x86_mce_decoder_chain, &amd_mce_dec_nb); 433
434 if (boot_cpu_data.x86 < 0xf || boot_cpu_data.x86 > 0x11)
435 return 0;
436
437 atomic_notifier_chain_register(&x86_mce_decoder_chain, &amd_mce_dec_nb);
434 438
435 return 0; 439 return 0;
436} 440}