Lines Matching defs:devfn
37 (struct pci_bus *bus, unsigned int devfn, int pos, type *value) \
44 res = bus->ops->read(bus, devfn, pos, len, &data); \
52 (struct pci_bus *bus, unsigned int devfn, int pos, type value) \
58 res = bus->ops->write(bus, devfn, pos, len, value); \
77 int pci_generic_config_read(struct pci_bus *bus, unsigned int devfn,
82 addr = bus->ops->map_bus(bus, devfn, where);
99 int pci_generic_config_write(struct pci_bus *bus, unsigned int devfn,
104 addr = bus->ops->map_bus(bus, devfn, where);
119 int pci_generic_config_read32(struct pci_bus *bus, unsigned int devfn,
124 addr = bus->ops->map_bus(bus, devfn, where & ~0x3);
139 int pci_generic_config_write32(struct pci_bus *bus, unsigned int devfn,
145 addr = bus->ops->map_bus(bus, devfn, where & ~0x3);
166 PCI_SLOT(devfn), PCI_FUNC(devfn), where);
231 ret = dev->bus->ops->read(dev->bus, dev->devfn, \
250 ret = dev->bus->ops->write(dev->bus, dev->devfn, \
532 return pci_bus_read_config_byte(dev->bus, dev->devfn, where, val);
542 return pci_bus_read_config_word(dev->bus, dev->devfn, where, val);
553 return pci_bus_read_config_dword(dev->bus, dev->devfn, where, val);
561 return pci_bus_write_config_byte(dev->bus, dev->devfn, where, val);
569 return pci_bus_write_config_word(dev->bus, dev->devfn, where, val);
578 return pci_bus_write_config_dword(dev->bus, dev->devfn, where, val);