aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/edac
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2010-08-27 09:39:35 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-08-30 13:56:57 -0400
commit3b330f67581db4f5301438cc0d9499f13314542d (patch)
tree7cb340aef1009738bfe6706201366e05bee8439d /drivers/edac
parentf42774224860d7c3f7c06559f98b681197999f9e (diff)
i7300_edac: Make the debug messages coherent with the others
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/edac')
-rw-r--r--drivers/edac/i7300_edac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/edac/i7300_edac.c b/drivers/edac/i7300_edac.c
index 3ae8fae74e5e..218d463fb1a8 100644
--- a/drivers/edac/i7300_edac.c
+++ b/drivers/edac/i7300_edac.c
@@ -580,9 +580,9 @@ static int decode_mtr(struct i7300_pvt *pvt,
580 580
581 if (IS_SINGLE_MODE(pvt->mc_settings_a)) { 581 if (IS_SINGLE_MODE(pvt->mc_settings_a)) {
582 p_csrow->edac_mode = EDAC_SECDED; 582 p_csrow->edac_mode = EDAC_SECDED;
583 debugf0("ECC 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 debugf0("ECC 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))
587 p_csrow->edac_mode = EDAC_S8ECD8ED; 587 p_csrow->edac_mode = EDAC_S8ECD8ED;
588 else 588 else
@@ -591,7 +591,7 @@ static int decode_mtr(struct i7300_pvt *pvt,
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)) {
594 debugf0("Scrub 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");
597 597