diff options
author | Niklas Söderlund <niklas.soderlund@ericsson.com> | 2012-02-17 05:36:54 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-03-21 14:20:55 -0400 |
commit | b6378cb3e545912a19e6355aa9171326fdc004d8 (patch) | |
tree | 6cef8bfe104b471ae403fd9d24b30c6054f4e556 /drivers/edac/i5100_edac.c | |
parent | 7fae0db43906ef182b3aee22415c9042ab18d6e6 (diff) |
edac: i5100 fix erroneous define for M1Err
According to [1] the define for M1Err in the FERR_NF_MEM register is
wrong. It should be at position 1 not 0.
[1] Intel 5100 Memory Controller Hub Chipset Doc.Nr: 318378
http://www.intel.com/content/dam/doc/datasheet/5100-
memory-controller-hub-chipset-datasheet.pdf
Reported-by: Ba Thang Nguyen <thang.b.nguyen@dektech.com.au>
Signed-off-by: Niklas Söderlund <niklas.soderlund@ericsson.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/edac/i5100_edac.c')
-rw-r--r-- | drivers/edac/i5100_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/i5100_edac.c b/drivers/edac/i5100_edac.c index bcbdeeca48b8..ab2f90619821 100644 --- a/drivers/edac/i5100_edac.c +++ b/drivers/edac/i5100_edac.c | |||
@@ -49,7 +49,7 @@ | |||
49 | #define I5100_FERR_NF_MEM_M6ERR_MASK (1 << 6) | 49 | #define I5100_FERR_NF_MEM_M6ERR_MASK (1 << 6) |
50 | #define I5100_FERR_NF_MEM_M5ERR_MASK (1 << 5) | 50 | #define I5100_FERR_NF_MEM_M5ERR_MASK (1 << 5) |
51 | #define I5100_FERR_NF_MEM_M4ERR_MASK (1 << 4) | 51 | #define I5100_FERR_NF_MEM_M4ERR_MASK (1 << 4) |
52 | #define I5100_FERR_NF_MEM_M1ERR_MASK 1 | 52 | #define I5100_FERR_NF_MEM_M1ERR_MASK (1 << 1) |
53 | #define I5100_FERR_NF_MEM_ANY_MASK \ | 53 | #define I5100_FERR_NF_MEM_ANY_MASK \ |
54 | (I5100_FERR_NF_MEM_M16ERR_MASK | \ | 54 | (I5100_FERR_NF_MEM_M16ERR_MASK | \ |
55 | I5100_FERR_NF_MEM_M15ERR_MASK | \ | 55 | I5100_FERR_NF_MEM_M15ERR_MASK | \ |