From: James S. <jsi...@us...> - 2001-11-01 22:29:26
|
Update of /cvsroot/linux-mips/linux/Documentation/mips/pci In directory usw-pr-cvs1:/tmp/cvs-serv1631 Modified Files: pci_fixups.c Log Message: Small note which if I new would have saved me alot of headaches. pcibios_fixup_resource is called after pcibios_fixup_irq which itslef is called after pcibios_init. Index: pci_fixups.c =================================================================== RCS file: /cvsroot/linux-mips/linux/Documentation/mips/pci/pci_fixups.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- pci_fixups.c 2001/10/22 21:24:44 1.2 +++ pci_fixups.c 2001/11/01 22:29:23 1.3 @@ -36,7 +36,7 @@ /* * Fixup your resources here, if necessary. *Usually* you * don't have to do anything here. - * Called after pcibios_fixup(). + * Called after pcibios_fixup() and pcibios_fixup_irqs(). */ void __init pcibios_fixup_resources(struct pci_dev *dev) { @@ -56,6 +56,7 @@ /* * This is very board specific. You'll have to look at * each pci device and assign its interrupt number. + * This function is called last of all the fixup functions. */ void __init pcibios_fixup_irqs(void) { |