Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 215968
b: refs/heads/master
c: 8600232
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Aug 30, 2010
1 parent 06bd3bd commit 5d46ce6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5de6e07ed75ee29a302f50e149339ca747131121
refs/heads/master: 86002324cf8809c72858741ab20bb7a855654b4c
10 changes: 10 additions & 0 deletions trunk/drivers/edac/i7300_edac.c
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,11 @@ static void i7300_process_error_global(struct mem_ctl_info *mci,
ARRAY_SIZE(ferr_global_hi_name));
specific = GET_ERR_FROM_TABLE(ferr_global_hi_name, errnum);
is_fatal = ferr_global_hi_is_fatal(errnum);

/* Clear the error bit */
pci_write_config_dword(pvt->pci_dev_16_2_fsb_err_regs,
FERR_GLOBAL_HI, value);

goto error_global;
}

Expand All @@ -310,6 +315,11 @@ static void i7300_process_error_global(struct mem_ctl_info *mci,
ARRAY_SIZE(ferr_global_lo_name));
specific = GET_ERR_FROM_TABLE(ferr_global_lo_name, errnum);
is_fatal = ferr_global_lo_is_fatal(errnum);

/* Clear the error bit */
pci_write_config_dword(pvt->pci_dev_16_2_fsb_err_regs,
FERR_GLOBAL_LO, value);

goto error_global;
}
return;
Expand Down

0 comments on commit 5d46ce6

Please sign in to comment.