EDAC, MCE: Use BIT_64() to eliminate warnings on 32-bit
authorRandy Dunlap <[email protected]>
Sat, 13 Nov 2010 16:44:26 +0000 (11:44 -0500)
committerBorislav Petkov <[email protected]>
Fri, 7 Jan 2011 10:54:25 +0000 (11:54 +0100)
Building for X86_32 produces shift count warnings, so use BIT_64() to
eliminate the warnings.

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

Signed-off-by: Randy Dunlap <[email protected]>
Cc: Doug Thompson <[email protected]>
Cc: [email protected]
Signed-off-by: Borislav Petkov <[email protected]>
drivers/edac/mce_amd.c

index 59ad34c506a53caa2ede338bf0948790960be089..61e0e87d18417ccfa30df2f946a809125e6ce723 100644 (file)
@@ -776,8 +776,8 @@ int amd_decode_mce(struct notifier_block *nb, unsigned long val, void *data)
 
        if (c->x86 == 0x15)
                pr_cont("|%s|%s",
-                       ((m->status & BIT(44))  ? "Deferred" : "-"),
-                       ((m->status & BIT(43))  ? "Poison"   : "-"));
+                       ((m->status & BIT_64(44)) ? "Deferred" : "-"),
+                       ((m->status & BIT_64(43)) ? "Poison"   : "-"));
 
        /* do the two bits[14:13] together */
        ecc = (m->status >> 45) & 0x3;