Skip to content

Commit

Permalink
EDAC, MCE: No F15h LS MCE decoder
Browse files Browse the repository at this point in the history
F15h BD doesn't generate LS MCEs so warn about it.

Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
  • Loading branch information
Borislav Petkov committed Jan 7, 2011
1 parent 70fdb49 commit b18434c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/edac/mce_amd.c
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ static void amd_decode_ls_mce(struct mce *m)
u16 ec = m->status & 0xffff;
u8 xec = (m->status >> 16) & xec_mask;

if (boot_cpu_data.x86 == 0x14) {
if (boot_cpu_data.x86 >= 0x14) {
pr_emerg("You shouldn't be seeing an LS MCE on this cpu family,"
" please report on LKML.\n");
return;
Expand Down

0 comments on commit b18434c

Please sign in to comment.