Lines Matching defs:devfn
97 int slot = PCI_SLOT(dev->devfn);
118 static int pci_conf0_read_config(struct pci_bus *bus, unsigned int devfn,
123 int slot = PCI_SLOT(devfn);
124 int fn = PCI_FUNC(devfn);
155 static int pci_conf1_read_config(struct pci_bus *bus, unsigned int devfn,
161 int slot = PCI_SLOT(devfn);
162 int fn = PCI_FUNC(devfn);
194 static int pci_read_config(struct pci_bus *bus, unsigned int devfn,
198 return pci_conf1_read_config(bus, devfn, where, size, value);
200 return pci_conf0_read_config(bus, devfn, where, size, value);
203 static int pci_conf0_write_config(struct pci_bus *bus, unsigned int devfn,
208 int slot = PCI_SLOT(devfn);
209 int fn = PCI_FUNC(devfn);
242 static int pci_conf1_write_config(struct pci_bus *bus, unsigned int devfn,
247 int slot = PCI_SLOT(devfn);
248 int fn = PCI_FUNC(devfn);
283 static int pci_write_config(struct pci_bus *bus, unsigned int devfn,
287 return pci_conf1_write_config(bus, devfn, where, size, value);
289 return pci_conf0_write_config(bus, devfn, where, size, value);