Lines Matching defs:pt_msix
26 struct pt_msix {
53 struct pt_msix *pt_msix = pt->pt_msix;
58 pt_msix->msix_entry.entry = 0;
60 ret = pci_enable_msix_range(pdev, &pt_msix->msix_entry, 1, 1);
64 pt_msix->msix_count = ret;
66 pt->pt_irq = pt_msix->msix_entry.vector;
109 struct pt_msix *pt_msix = pt->pt_msix;
113 if (pt_msix->msix_count)
124 struct pt_msix *pt_msix;
134 pt_msix = devm_kzalloc(dev, sizeof(*pt_msix), GFP_KERNEL);
135 if (!pt_msix)
138 pt->pt_msix = pt_msix;