Lines Matching refs:methods
21 a->methods->scan(a); in pci_scan_bus()
31 d->methods = a->methods; in pci_alloc_dev()
34 if (d->methods->init_dev) in pci_alloc_dev()
35 d->methods->init_dev(d); in pci_alloc_dev()
86 if (d->methods->cleanup_dev) in pci_free_dev()
87 d->methods->cleanup_dev(d); in pci_free_dev()
101 else if (!d->methods->read(d, pos, buf, len)) in pci_read_data()
132 return d->methods->read(d, pos, buf, len); in pci_read_block()
138 return d->methods->read_vpd ? d->methods->read_vpd(d, pos, buf, len) : 0; in pci_read_vpd()
148 return d->methods->write(d, pos, buf, len); in pci_write_data()
179 return d->methods->write(d, pos, buf, len); in pci_write_block()
203 d->methods->fill_info(d, uflags); in pci_fill_info_v313()