Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 472 → Rev 473

/shark/trunk/drivers/newpci/pci-driver.c
34,6 → 34,7
(id->subdevice == PCI_ANY_ID || id->subdevice == dev->subsystem_device) &&
!((id->class ^ dev->class) & id->class_mask))
return id;
 
return NULL;
}
 
/shark/trunk/drivers/newpci/pci.c
1,5 → 1,5
/*
* $Id: pci.c,v 1.5 2004-02-23 14:23:57 giacomo Exp $
* $Id: pci.c,v 1.6 2004-02-26 16:57:35 giacomo Exp $
*
* PCI Bus Services, see include/linux/pci.h for further explanation.
*
724,10 → 724,6
pci_fixup_device(PCI_FIXUP_FINAL, dev);
}
 
dev = pci_find_class(PCI_CLASS_NETWORK_ETHERNET << 8,NULL);
 
printk("Find %x\n",(int)(dev));
 
return 0;
}