diff options
Diffstat (limited to 'cpu/mpc8260/traps.c')
| -rw-r--r-- | cpu/mpc8260/traps.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/cpu/mpc8260/traps.c b/cpu/mpc8260/traps.c index 715ef6006..0c39e434e 100644 --- a/cpu/mpc8260/traps.c +++ b/cpu/mpc8260/traps.c @@ -140,7 +140,7 @@ MachineCheckException(struct pt_regs *regs)  	dump_pci();  #endif  	/* clear the error in the error status register */ -	if(immap->im_pci.pci_esr && cpu_to_le32(PCI_ERROR_PCI_NO_RSP)) { +	if(immap->im_pci.pci_esr & cpu_to_le32(PCI_ERROR_PCI_NO_RSP)) {  		immap->im_pci.pci_esr = cpu_to_le32(PCI_ERROR_PCI_NO_RSP);  		return;  	} |