Lines Matching defs:devfn
98 int slot = PCI_SLOT(dev->devfn);
119 static int pci_conf0_read_config(struct pci_bus *bus, unsigned int devfn,
124 int slot = PCI_SLOT(devfn);
125 int fn = PCI_FUNC(devfn);
156 static int pci_conf1_read_config(struct pci_bus *bus, unsigned int devfn,
162 int slot = PCI_SLOT(devfn);
163 int fn = PCI_FUNC(devfn);
195 static int pci_read_config(struct pci_bus *bus, unsigned int devfn,
199 return pci_conf1_read_config(bus, devfn, where, size, value);
201 return pci_conf0_read_config(bus, devfn, where, size, value);
204 static int pci_conf0_write_config(struct pci_bus *bus, unsigned int devfn,
209 int slot = PCI_SLOT(devfn);
210 int fn = PCI_FUNC(devfn);
243 static int pci_conf1_write_config(struct pci_bus *bus, unsigned int devfn,
248 int slot = PCI_SLOT(devfn);
249 int fn = PCI_FUNC(devfn);
284 static int pci_write_config(struct pci_bus *bus, unsigned int devfn,
288 return pci_conf1_write_config(bus, devfn, where, size, value);
290 return pci_conf0_write_config(bus, devfn, where, size, value);