Update of /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477
In directory usw-pr-cvs1:/tmp/cvs-serv5389
Modified Files:
pci.c
Log Message:
Same as OSS already so this commit is just to minimize the diff.
Index: pci.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477/pci.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- pci.c 2001/12/06 22:00:57 1.5
+++ pci.c 2002/02/05 17:13:33 1.6
@@ -118,12 +118,12 @@
pci_for_each_dev(dev) {
slot_num = PCI_SLOT(dev->devfn);
- /* we don't do IRQ fixup for sub-bus yet */
- if (dev->bus->parent != NULL) {
- db_run(printk("Don't know how to fixup irq for PCI device %d on sub-bus %d\n",
- slot_num, dev->bus->number));
- continue;
- }
+ /* we don't do IRQ fixup for sub-bus yet */
+ if (dev->bus->parent != NULL) {
+ db_run(printk("Don't know how to fixup irq for PCI device %d on sub-bus %d\n",
+ slot_num, dev->bus->number));
+ continue;
+ }
db_assert(slot_num < MAX_SLOT_NUM);
db_assert(irq_map[slot_num] != 0xff);
|