Lines Matching refs:where

286 extern int pcibios_read_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, u…
287 extern int pcibios_write_config_byte (unsigned int bus, unsigned int device_fn, unsigned int where,…
288 extern int pcibios_read_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, u…
289 extern int pcibios_write_config_word (unsigned int bus, unsigned int device_fn, unsigned int where,…
290 extern int pcibios_read_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, …
291 extern int pcibios_write_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where,…
297 pci_read_config_byte(struct pci_device *dev, unsigned int where, uint8_t *value) in pci_read_config_byte() argument
299 return pcibios_read_config_byte(dev->bus, dev->devfn, where, value); in pci_read_config_byte()
302 pci_write_config_byte(struct pci_device *dev, unsigned int where, uint8_t value) in pci_write_config_byte() argument
304 return pcibios_write_config_byte(dev->bus, dev->devfn, where, value); in pci_write_config_byte()
307 pci_read_config_word(struct pci_device *dev, unsigned int where, uint16_t *value) in pci_read_config_word() argument
309 return pcibios_read_config_word(dev->bus, dev->devfn, where, value); in pci_read_config_word()
312 pci_write_config_word(struct pci_device *dev, unsigned int where, uint16_t value) in pci_write_config_word() argument
314 return pcibios_write_config_word(dev->bus, dev->devfn, where, value); in pci_write_config_word()
317 pci_read_config_dword(struct pci_device *dev, unsigned int where, uint32_t *value) in pci_read_config_dword() argument
319 return pcibios_read_config_dword(dev->bus, dev->devfn, where, value); in pci_read_config_dword()
322 pci_write_config_dword(struct pci_device *dev, unsigned int where, uint32_t value) in pci_write_config_dword() argument
324 return pcibios_write_config_dword(dev->bus, dev->devfn, where, value); in pci_write_config_dword()