/src/sys/arch/x86/pci/ |
pci_bus_fixup.c | 62 const struct pci_quirkdata *qd; local in function:pci_bus_fixup 88 qd = pci_lookup_quirkdata(PCI_VENDOR(reg), PCI_PRODUCT(reg)); 92 (qd != NULL && 93 (qd->quirks & PCI_QUIRK_MULTIFUNCTION) != 0))
|
pci_machdep.c | 907 const struct pci_quirkdata *qd; local in function:pci_device_foreach_min 925 qd = pci_lookup_quirkdata(PCI_VENDOR(id), 930 (qd != NULL && 931 (qd->quirks & PCI_QUIRK_MULTIFUNCTION) != 0))
|
/src/sys/dev/usb/ |
umidi_quirks.c | 660 const struct umq_data *qd; local in function:umidi_print_quirk 663 for (qd=q->quirks; qd->type; qd++) 664 printf("%s%s", quirk_name[qd->type], 665 (qd+1)->type?", ":")\n"); 674 const struct umq_data *qd; local in function:umidi_get_quirk_data_from_type 676 for (qd=q->quirks; qd->type; qd++ [all...] |
/src/sys/arch/i386/pci/ |
pci_intr_fixup.c | 820 const struct pci_quirkdata *qd; local in function:pci_intr_fixup 834 qd = pci_lookup_quirkdata(PCI_VENDOR(icuid), 839 (qd != NULL && 840 (qd->quirks & PCI_QUIRK_MULTIFUNCTION) != 0))
|
/src/sys/dev/acpi/ |
acpi_mcfg.c | 472 const struct pci_quirkdata *qd; local in function:acpimcfg_device_probe 500 qd = pci_lookup_quirkdata(PCI_VENDOR(reg), PCI_PRODUCT(reg)); 501 if (qd != NULL && (qd->quirks & PCI_QUIRK_HASEXTCNF) != 0) 503 if (qd != NULL && (qd->quirks & PCI_QUIRK_NOEXTCNF) != 0)
|
/src/sys/dev/pci/ |
pci.c | 230 const struct pci_quirkdata *qd; local in function:pciprint 255 qd = pci_lookup_quirkdata(PCI_VENDOR(pa->pa_id), 257 if (qd == NULL) { 264 "\012skipfunc7", qd->quirks); 749 const struct pci_quirkdata *qd; local in function:pci_enumerate_bus1 812 qd = pci_lookup_quirkdata(PCI_VENDOR(id), PCI_PRODUCT(id)); 814 if (qd != NULL && 815 (qd->quirks & PCI_QUIRK_MULTIFUNCTION) != 0) 817 else if (qd != NULL && 818 (qd->quirks & PCI_QUIRK_MONOFUNCTION) != 0 [all...] |
/src/sys/dev/qbus/ |
qd.c | 1 /* $NetBSD: qd.c,v 1.62 2023/08/01 21:26:28 andvar Exp $ */ 31 * @(#)qd.c 7.1 (Berkeley) 6/28/91 57 * qd.c - QDSS display driver for VAXSTATION-II GPX workstation 61 __KERNEL_RCSID(0, "$NetBSD: qd.c,v 1.62 2023/08/01 21:26:28 andvar Exp $"); 65 #include "qd.h" 110 u_short selmask; /* mask for active qd select entries */ 223 int qdcount = 0; /* count of successfully probed qd's */ 321 cons_decl(qd); 451 return; /* Cannot use qd if vm system is OFF */ 536 CFATTACH_DECL_NEW(qd, sizeof(struct qd_softc) 883 struct qdmap *qd; local in function:qdclose 1081 struct qdmap *qd; \/* pointer to device map struct *\/ local in function:qdioctl [all...] |