mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[PATCH] EDAC: e752x bit mask fix
The fatal vs. non-fatal mask for the sysbus FERR status is incorrect according to the E7520 datasheet. This patch corrects the mask to correctly handle fatal and non-fatal errors. Signed-off-by: Brian Pomerantz <bapper@mvista.com> Signed-off-by: Dave Jiang <djiang@mvista.com> Signed-off-by: Doug Thompson <norsk5@xmission.com> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Cc: Andi Kleen <ak@suse.de> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
27b0b2f44a
commit
dfb2a76378
1 changed files with 8 additions and 8 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue