Lines Matching refs:where

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