Home | History | Annotate | Download | only in netboot

Lines Matching refs:pdev

1775 static int      TLan_probe1( struct pci_dev *pdev, long ioaddr, int irq, int rev, const struct pci_device_id *ent);
1777 static int tlan_init_one( struct pci_dev *pdev, const struct pci_device_id *ent);
1888 static void __devexit tlan_remove_one( struct pci_dev *pdev)
1890 struct net_device *dev = pci_get_drvdata( pdev );
1903 pci_set_drvdata( pdev, NULL );
1952 static int __devinit tlan_init_one( struct pci_dev *pdev,
1955 return TLan_probe1( pdev, -1, -1, 0, ent);
1977 static int __devinit TLan_probe1(struct pci_dev *pdev,
1987 if (pdev && pci_enable_device(pdev))
2000 if (pdev) {
2005 pci_read_config_byte ( pdev, PCI_REVISION_ID, &pci_rev);
2008 if (pci_resource_flags(pdev, reg) & IORESOURCE_IO) {
2009 pci_io_base = pci_resource_start(pdev, reg);
2023 dev->irq = pdev->irq;
2025 pci_set_master(pdev);
2026 pci_set_drvdata(pdev, dev);
2082 /* pdev is NULL if this is an EISA device */
2083 if (pdev)