Update of /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477
In directory usw-pr-cvs1:/tmp/cvs-serv1799/arch/mips/ddb5xxx/ddb5477
Modified Files:
pci.c
Log Message:
Remove DDB5xxx pci code and use the common shared MIPS PCI code.
Index: pci.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477/pci.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pci.c 2001/08/22 18:18:13 1.2
+++ pci.c 2001/09/26 17:12:37 1.3
@@ -3,9 +3,10 @@
#include <linux/types.h>
#include <linux/pci.h>
+#include <asm/pci_channel.h>
+
#include <asm/ddb5xxx/ddb5xxx.h>
#include <asm/ddb5xxx/debug.h>
-#include <asm/ddb5xxx/pci.h>
static struct resource extpci_io_resource = {
"ext pci IO space",
@@ -143,5 +144,15 @@
unsigned __init int pcibios_assign_all_busses(void)
{
+ /* we hope pci_auto has assigned the bus numbers to all buses */
return 1;
}
+
+void __init pcibios_fixup_resources(struct pci_dev *dev)
+{
+}
+
+void __init pcibios_fixup(void)
+{
+}
+
|