Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 47949
b: refs/heads/master
c: dfb2a76
h: refs/heads/master
i:
  47947: 12661a9
v: v3
  • Loading branch information
Brian Pomerantz authored and Linus Torvalds committed Feb 12, 2007
1 parent 16e1805 commit fd05745
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 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: 27b0b2f44adffe0193a695bb528a83b550b8e54b
refs/heads/master: dfb2a76378f095b0aaa2024ce9a8cfb2ae2354d2
16 changes: 8 additions & 8 deletions trunk/drivers/edac/e752x_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -556,17 +556,17 @@ static void e752x_check_sysbus(struct e752x_error_info *info,
error32 = (stat32 >> 16) & 0x3ff;
stat32 = stat32 & 0x3ff;

if(stat32 & 0x083)
sysbus_error(1, stat32 & 0x083, error_found, handle_error);
if(stat32 & 0x087)
sysbus_error(1, stat32 & 0x087, error_found, handle_error);

if(stat32 & 0x37c)
sysbus_error(0, stat32 & 0x37c, error_found, handle_error);
if(stat32 & 0x378)
sysbus_error(0, stat32 & 0x378, error_found, handle_error);

if(error32 & 0x083)
sysbus_error(1, error32 & 0x083, error_found, handle_error);
if(error32 & 0x087)
sysbus_error(1, error32 & 0x087, error_found, handle_error);

if(error32 & 0x37c)
sysbus_error(0, error32 & 0x37c, error_found, handle_error);
if(error32 & 0x378)
sysbus_error(0, error32 & 0x378, error_found, handle_error);
}

static void e752x_check_membuf (struct e752x_error_info *info,
Expand Down

0 comments on commit fd05745

Please sign in to comment.