Lines Matching defs:pci
122 MODULE_DEVICE_TABLE(pci, ahc_linux_pci_id_table);
184 ahc_dev_softc_t pci;
190 pci = pdev;
191 entry = ahc_find_pci_device(pci);
201 ahc_get_pci_bus(pci),
202 ahc_get_pci_slot(pci),
203 ahc_get_pci_function(pci));
228 ahc->dev_softc = pci;
229 ahc->dev = &pci->dev;
250 ahc_pci_read_config(ahc_dev_softc_t pci, int reg, int width)
257 pci_read_config_byte(pci, reg, &retval);
263 pci_read_config_word(pci, reg, &retval);
269 pci_read_config_dword(pci, reg, &retval);
280 ahc_pci_write_config(ahc_dev_softc_t pci, int reg, uint32_t value, int width)
284 pci_write_config_byte(pci, reg, value);
287 pci_write_config_word(pci, reg, value);
290 pci_write_config_dword(pci, reg, value);