diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-10 19:43:00 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-10 19:43:00 +0000 |
commit | dab3ca1324288a1abeb32590e1caec8848efe3e0 (patch) | |
tree | 4f317d291370cf0af876f446896c66a3a503be97 /target/linux/x86-2.4/patches/003-mgeode-pci.patch | |
parent | 2768e44f00ff513e9cc3e46a2c7cd91d1920c133 (diff) |
large target/linux cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2877 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86-2.4/patches/003-mgeode-pci.patch')
-rw-r--r-- | target/linux/x86-2.4/patches/003-mgeode-pci.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/x86-2.4/patches/003-mgeode-pci.patch b/target/linux/x86-2.4/patches/003-mgeode-pci.patch new file mode 100644 index 0000000000..eb6594ec84 --- /dev/null +++ b/target/linux/x86-2.4/patches/003-mgeode-pci.patch @@ -0,0 +1,14 @@ +diff -Nur linux-2.4.29/drivers/pci/pci.c linux-2.4.29_geode/drivers/pci/pci.c +--- linux-2.4.29/drivers/pci/pci.c Wed Nov 17 12:54:21 2004 ++++ linux-2.4.29_geode/drivers/pci/pci.c Tue Feb 15 23:41:54 2005 +@@ -1486,6 +1486,10 @@ + for (func = 0; func < 8; func++, temp->devfn++) { + if (pci_read_config_byte(temp, PCI_HEADER_TYPE, &hdr_type)) + continue; ++#ifdef CONFIG_MGEODE ++ if (hdr_type & 0x7f > PCI_HEADER_TYPE_CARDBUS) ++ continue; ++#endif + temp->hdr_type = hdr_type & 0x7f; + + dev = pci_scan_device(temp); |