Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 436 → Rev 440

/shark/trunk/drivers/newpci/pci.c
1,5 → 1,5
/*
* $Id: pci.c,v 1.3 2004-01-29 13:23:34 giacomo Exp $
* $Id: pci.c,v 1.4 2004-01-30 18:30:24 giacomo Exp $
*
* PCI Bus Services, see include/linux/pci.h for further explanation.
*
18,7 → 18,7
#include <linux/spinlock.h>
#include <asm/dma.h> /* isa_dma_bridge_buggy */
 
#undef DEBUG
#define DEBUG
 
#ifdef DEBUG
#define DBG(x...) printk(x)
723,6 → 723,11
while ((dev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
pci_fixup_device(PCI_FIXUP_FINAL, dev);
}
 
dev = pci_find_class(PCI_CLASS_NETWORK_ETHERNET,NULL);
 
printk("Find %x\n",(int)(dev));
 
return 0;
}