diff options
author | Borislav Petkov <borislav.petkov@amd.com> | 2010-09-22 10:12:03 -0400 |
---|---|---|
committer | Borislav Petkov <bp@amd64.org> | 2010-10-21 08:48:06 -0400 |
commit | fda7561f438aeddf074e2db0890e283195aa7779 (patch) | |
tree | 5d6503a3112c83baa70ac83420115340de38c48a /drivers/edac/mce_amd.c | |
parent | cb9d5ecdff66197f65a6be8032ccc1ebf7199684 (diff) |
EDAC, MCE: Enable MCE decoding on F12h
Turn on MCE decoding on F12h.
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
Diffstat (limited to 'drivers/edac/mce_amd.c')
-rw-r--r-- | drivers/edac/mce_amd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/mce_amd.c b/drivers/edac/mce_amd.c index 6501392389af..7f74f0f318c8 100644 --- a/drivers/edac/mce_amd.c +++ b/drivers/edac/mce_amd.c | |||
@@ -611,7 +611,7 @@ static int __init mce_amd_init(void) | |||
611 | if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) | 611 | if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) |
612 | return 0; | 612 | return 0; |
613 | 613 | ||
614 | if ((boot_cpu_data.x86 < 0xf || boot_cpu_data.x86 > 0x11) && | 614 | if ((boot_cpu_data.x86 < 0xf || boot_cpu_data.x86 > 0x12) && |
615 | (boot_cpu_data.x86 != 0x14 || boot_cpu_data.x86_model > 0xf)) | 615 | (boot_cpu_data.x86 != 0x14 || boot_cpu_data.x86_model > 0xf)) |
616 | return 0; | 616 | return 0; |
617 | 617 | ||