Home | History | Annotate | Download | only in pci

Lines Matching defs:ph

114 	struct opti82c700_handle *ph;
116 ph = malloc(sizeof(*ph), M_DEVBUF, M_NOWAIT);
117 if (ph == NULL)
120 ph->ph_pc = pc;
121 ph->ph_tag = tag;
123 opti82c700_pir_dump(ph);
126 *phandp = ph;
197 struct opti82c700_handle *ph = v;
204 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs);
216 struct opti82c700_handle *ph = v;
226 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs);
229 pci_conf_write(ph->ph_pc, ph->ph_tag, addrofs, reg);
237 struct opti82c700_handle *ph = v;
253 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs);
269 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs);
283 struct opti82c700_handle *ph = v;
298 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs);
308 pci_conf_write(ph->ph_pc, ph->ph_tag, addrofs, reg);
318 reg = pci_conf_read(ph->ph_pc, ph->ph_tag, addrofs);
330 opti82c700_pir_dump(struct opti82c700_handle *ph)
333 pcitag_t tag = ph->ph_tag;
334 pci_chipset_tag_t pc = ph->ph_pc;