summaryrefslogtreecommitdiffstats
path: root/target/linux/au1000-2.6/patches/009-pci_clear_errors.patch
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-24 21:57:34 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-05-24 21:57:34 +0000
commit2d84656963645199fb695344818787f2310da825 (patch)
tree8ad9264ab9e9a8f311e0c2d9fab719da71cd4d57 /target/linux/au1000-2.6/patches/009-pci_clear_errors.patch
parent9e26bd65a84c25f7d7371236c820762025516631 (diff)
Update au1000 for .21, build an SREC initramfs image so that it can be tested directly with yamon
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7333 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/au1000-2.6/patches/009-pci_clear_errors.patch')
-rw-r--r--target/linux/au1000-2.6/patches/009-pci_clear_errors.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/au1000-2.6/patches/009-pci_clear_errors.patch b/target/linux/au1000-2.6/patches/009-pci_clear_errors.patch
deleted file mode 100644
index 27282b27c..000000000
--- a/target/linux/au1000-2.6/patches/009-pci_clear_errors.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -urN linux-2.6.19/arch/mips/pci/ops-au1000.c linux-2.6.19.new/arch/mips/pci/ops-au1000.c
---- linux-2.6.19/arch/mips/pci/ops-au1000.c 2006-11-29 22:57:37.000000000 +0100
-+++ linux-2.6.19.new/arch/mips/pci/ops-au1000.c 2006-12-28 03:02:42.000000000 +0100
-@@ -172,7 +172,11 @@
- error = -1;
- DBG("Au1x Master Abort\n");
- } 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;
- }