Lines Matching defs:ecap
1603 uint32_t ecap;
1611 ecap = pci_read_config(child, ptr, 4);
1612 if (ecap == 0xffffffff || ecap == 0)
1615 if (PCI_EXTCAP_ID(ecap) == capability) {
1620 ptr = PCI_EXTCAP_NEXTPTR(ecap);
1623 ecap = pci_read_config(child, ptr, 4);
1640 uint32_t ecap;
1647 ecap = pci_read_config(child, start, 4);
1648 KASSERT(PCI_EXTCAP_ID(ecap) == capability,
1650 ptr = PCI_EXTCAP_NEXTPTR(ecap);
1652 ecap = pci_read_config(child, ptr, 4);
1653 if (PCI_EXTCAP_ID(ecap) == capability) {
1658 ptr = PCI_EXTCAP_NEXTPTR(ecap);