EDAC, MCE: Fix shift warning on 32-bit
authorBorislav Petkov <borislav.petkov@amd.com>
Fri, 15 Oct 2010 13:27:02 +0000 (15:27 +0200)
committerBorislav Petkov <bp@amd64.org>
Thu, 21 Oct 2010 12:48:07 +0000 (14:48 +0200)
Fix

drivers/edac/mce_amd.c:262: warning: left shift count >= width of type

on 32-bit builds.

Reported-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Borislav Petkov <borislav.petkov@amd.com>
drivers/edac/mce_amd.c

index 7f74f0f..c018109 100644 (file)
@@ -265,7 +265,7 @@ static void amd_decode_ic_mce(struct mce *m)
                pr_cont("%s TLB %s.\n", LL_MSG(ec),
                        (xec ? "multimatch" : "parity error"));
        else if (BUS_ERROR(ec)) {
                pr_cont("%s TLB %s.\n", LL_MSG(ec),
                        (xec ? "multimatch" : "parity error"));
        else if (BUS_ERROR(ec)) {
-               bool k8 = (boot_cpu_data.x86 == 0xf && (m->status & BIT(58)));
+               bool k8 = (boot_cpu_data.x86 == 0xf && (m->status & BIT_64(58)));
 
                pr_cont("during %s.\n", (k8 ? "system linefill" : "NB data read"));
        } else if (fam_ops->ic_mce(ec))
 
                pr_cont("during %s.\n", (k8 ? "system linefill" : "NB data read"));
        } else if (fam_ops->ic_mce(ec))