diff options
| -rw-r--r-- | drivers/edac/i7300_edac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/edac/i7300_edac.c b/drivers/edac/i7300_edac.c index 218d463fb1a8..a4f47fda078d 100644 --- a/drivers/edac/i7300_edac.c +++ b/drivers/edac/i7300_edac.c | |||
| @@ -583,14 +583,14 @@ static int decode_mtr(struct i7300_pvt *pvt, | |||
| 583 | debugf2("\t\tECC code is 8-byte-over-32-byte SECDED+ code\n"); | 583 | debugf2("\t\tECC code is 8-byte-over-32-byte SECDED+ code\n"); |
| 584 | } else { | 584 | } else { |
| 585 | debugf2("\t\tECC code is on Lockstep mode\n"); | 585 | debugf2("\t\tECC code is on Lockstep mode\n"); |
| 586 | if (MTR_DRAM_WIDTH(mtr)) | 586 | if (MTR_DRAM_WIDTH(mtr) == 8) |
| 587 | p_csrow->edac_mode = EDAC_S8ECD8ED; | 587 | p_csrow->edac_mode = EDAC_S8ECD8ED; |
| 588 | else | 588 | else |
| 589 | p_csrow->edac_mode = EDAC_S4ECD4ED; | 589 | p_csrow->edac_mode = EDAC_S4ECD4ED; |
| 590 | } | 590 | } |
| 591 | 591 | ||
| 592 | /* ask what device type on this row */ | 592 | /* ask what device type on this row */ |
| 593 | if (MTR_DRAM_WIDTH(mtr)) { | 593 | if (MTR_DRAM_WIDTH(mtr) == 8) { |
| 594 | debugf2("\t\tScrub algorithm for x8 is on %s mode\n", | 594 | debugf2("\t\tScrub algorithm for x8 is on %s mode\n", |
| 595 | IS_SCRBALGO_ENHANCED(pvt->mc_settings) ? | 595 | IS_SCRBALGO_ENHANCED(pvt->mc_settings) ? |
| 596 | "enhanced" : "normal"); | 596 | "enhanced" : "normal"); |
