Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 309137
b: refs/heads/master
c: 486dfb1
h: refs/heads/master
i:
  309135: 217b681
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed May 28, 2012
1 parent c57f4d9 commit 196a8d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9f70d08a4c4581eee802563b709f710ad492d966
refs/heads/master: 486dfb1638bc49e9f3bbbefbe4832024ba6abe0d
12 changes: 5 additions & 7 deletions trunk/drivers/edac/i5000_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,6 @@ static void i5000_process_fatal_error_info(struct mem_ctl_info *mci,
char msg[EDAC_MC_LABEL_LEN + 1 + 160];
char *specific = NULL;
u32 allErrors;
int branch;
int channel;
int bank;
int rank;
Expand All @@ -486,8 +485,7 @@ static void i5000_process_fatal_error_info(struct mem_ctl_info *mci,
if (!allErrors)
return; /* if no error, return now */

branch = EXTRACT_FBDCHAN_INDX(info->ferr_fat_fbd);
channel = branch;
channel = EXTRACT_FBDCHAN_INDX(info->ferr_fat_fbd);

/* Use the NON-Recoverable macros to extract data */
bank = NREC_BANK(info->nrecmema);
Expand All @@ -496,9 +494,9 @@ static void i5000_process_fatal_error_info(struct mem_ctl_info *mci,
ras = NREC_RAS(info->nrecmemb);
cas = NREC_CAS(info->nrecmemb);

debugf0("\t\tCSROW= %d Channels= %d,%d (Branch= %d "
"DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n",
rank, channel, channel + 1, branch >> 1, bank,
debugf0("\t\tCSROW= %d Channel= %d "
"(DRAM Bank= %d rdwr= %s ras= %d cas= %d)\n",
rank, channel, bank,
rdwr ? "Write" : "Read", ras, cas);

/* Only 1 bit will be on */
Expand Down Expand Up @@ -539,7 +537,7 @@ static void i5000_process_fatal_error_info(struct mem_ctl_info *mci,

/* Call the helper to output message */
edac_mc_handle_error(HW_EVENT_ERR_FATAL, mci, 0, 0, 0,
branch >> 1, -1, rank,
channel >> 1, channel & 1, rank,
rdwr ? "Write error" : "Read error",
msg, NULL);
}
Expand Down

0 comments on commit 196a8d4

Please sign in to comment.