diff options
author | Mathias Krause <minipli@googlemail.com> | 2011-08-18 09:17:00 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-18 14:07:15 -0700 |
commit | 8cf2d2399ab60842f55598bc1b00fd15503b9950 (patch) | |
tree | 86851eba5b1fdbe028df963e8da5d8af0a8d07bd /drivers/edac/i7core_edac.c | |
parent | 338d0f0a6fbc82407864606f5b64b75aeb3c70f2 (diff) | |
download | linux-8cf2d2399ab60842f55598bc1b00fd15503b9950.tar.gz linux-8cf2d2399ab60842f55598bc1b00fd15503b9950.tar.bz2 linux-8cf2d2399ab60842f55598bc1b00fd15503b9950.zip |
i7core_edac: fixed typo in error count calculation
Based on a patch from the PaX Team, found during a clang analysis pass.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: PaX Team <pageexec@freemail.hu>
Cc: stable@kernel.org [v2.6.35+]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/edac/i7core_edac.c')
-rw-r--r-- | drivers/edac/i7core_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c index 04f1e7ce02b1..f6cf448d69b4 100644 --- a/drivers/edac/i7core_edac.c +++ b/drivers/edac/i7core_edac.c @@ -1670,7 +1670,7 @@ static void i7core_mce_output_error(struct mem_ctl_info *mci, char *type, *optype, *err, *msg; unsigned long error = m->status & 0x1ff0000l; u32 optypenum = (m->status >> 4) & 0x07; - u32 core_err_cnt = (m->status >> 38) && 0x7fff; + u32 core_err_cnt = (m->status >> 38) & 0x7fff; u32 dimm = (m->misc >> 16) & 0x3; u32 channel = (m->misc >> 18) & 0x3; u32 syndrome = m->misc >> 32; |