Update of /cvsroot/linux-mips/linux/arch/mips/cobalt
In directory usw-pr-cvs1:/tmp/cvs-serv8324
Modified Files:
pci_fixups.c
Log Message:
Moved fixups to pcibios_fixup. Not really teh right place but here at least the machine boots.
Index: pci_fixups.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/cobalt/pci_fixups.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- pci_fixups.c 2001/10/25 21:39:48 1.3
+++ pci_fixups.c 2001/10/31 19:39:10 1.4
@@ -317,11 +317,6 @@
void __init pcibios_fixup_resources(struct pci_dev *dev)
{
/* will need to fixup IO resources */
- qube_raq_via_bmIDE_fixup(dev);
- qube_raq_tulip_fixup(dev);
- qube_raq_galileo_fixup(dev);
- qube_raq_scsi_fixup(dev);
- qube_pcibios_fixup(dev);
}
/*
@@ -334,7 +329,12 @@
struct pci_dev *dev;
pci_for_each_dev(dev) {
- }
+ qube_raq_via_bmIDE_fixup(dev);
+ qube_raq_tulip_fixup(dev);
+ qube_raq_galileo_fixup(dev);
+ qube_raq_scsi_fixup(dev);
+ qube_pcibios_fixup(dev);
+ }
}
/*
|