Lines Matching defs:pci
122 MODULE_DEVICE_TABLE(pci, ahc_linux_pci_id_table);
208 ahc_dev_softc_t pci;
214 pci = pdev;
215 entry = ahc_find_pci_device(pci);
225 ahc_get_pci_bus(pci),
226 ahc_get_pci_slot(pci),
227 ahc_get_pci_function(pci));
252 ahc->dev_softc = pci;
253 ahc->dev = &pci->dev;
274 ahc_pci_read_config(ahc_dev_softc_t pci, int reg, int width)
281 pci_read_config_byte(pci, reg, &retval);
287 pci_read_config_word(pci, reg, &retval);
293 pci_read_config_dword(pci, reg, &retval);
304 ahc_pci_write_config(ahc_dev_softc_t pci, int reg, uint32_t value, int width)
308 pci_write_config_byte(pci, reg, value);
311 pci_write_config_word(pci, reg, value);
314 pci_write_config_dword(pci, reg, value);