Searched refs:msicount (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/sys/dev/drm2/
H A Ddrm_pci.c406 int msicount, ret; local
411 msicount = pci_msi_count(dev->dev);
412 DRM_DEBUG("MSI count = %d\n", msicount);
413 if (msicount > 1)
414 msicount = 1;
416 ret = pci_alloc_msi(dev->dev, &msicount);
418 DRM_INFO("MSI enabled %d message(s)\n", msicount);
/freebsd-current/sys/dev/isp/
H A Disp_pci.c206 int msicount; member in struct:isp_pcisoftc
646 if (pcs->msicount) {
685 if (pcs->msicount)
1256 pcs->msicount = imin(pci_msix_count(dev), max_irq);
1257 if (pcs->msicount > 0 &&
1258 pci_alloc_msix(dev, &pcs->msicount) != 0)
1259 pcs->msicount = 0;
1261 if (pcs->msicount == 0) {
1266 pcs->msicount = imin(pci_msi_count(dev), max_irq);
1267 if (pcs->msicount >
[all...]

Completed in 65 milliseconds