diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2006-02-06 18:36:28 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-06 18:36:28 +0000 |
commit | 5c70d86825ced73fe07d02a4647e70c54f2efe07 (patch) | |
tree | 23b7b80934d3f7d54d036bfa71c7ffae68dd169b /packages/linux/linux-mtx-1-2.4.27/29-au1000-pci-config-clear-errors.diff | |
parent | 11ec8ab68be596ed8fca854042f2e8815da19ce2 (diff) | |
parent | edab0569b271a6c11d611afcdeb3f8a5a3a682e6 (diff) |
merge of 87274db5332eba6f472a3332129b88b8282ccda2
and 3b6a0bff32c9c79ebeb059cd1559d7731542af03
Diffstat (limited to 'packages/linux/linux-mtx-1-2.4.27/29-au1000-pci-config-clear-errors.diff')
-rw-r--r-- | packages/linux/linux-mtx-1-2.4.27/29-au1000-pci-config-clear-errors.diff | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/linux/linux-mtx-1-2.4.27/29-au1000-pci-config-clear-errors.diff b/packages/linux/linux-mtx-1-2.4.27/29-au1000-pci-config-clear-errors.diff new file mode 100644 index 0000000000..5da1cd61f8 --- /dev/null +++ b/packages/linux/linux-mtx-1-2.4.27/29-au1000-pci-config-clear-errors.diff @@ -0,0 +1,15 @@ +--- linux/arch/mips/au1000/common/pci_ops.c.orig 2005-08-24 17:36:25.000000000 +0200 ++++ linux/arch/mips/au1000/common/pci_ops.c 2005-08-24 17:37:38.000000000 +0200 +@@ -259,7 +259,11 @@ + *data = 0xffffffff; + error = -1; + } else if ((status >> 28) & 0xf) { +- DBG("PCI ERR detected: status %x\n", status); ++ DBG("PCI ERR detected: device %d, status %x\n", device, ((status >> 28) & 0xf)); ++ ++ /* clear errors */ ++ au_writel(status & 0xf000ffff, Au1500_PCI_STATCMD); ++ + *data = 0xffffffff; + error = -1; + } |