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

/freebsd-9.3-release/sys/dev/drm/
H A Ddrm_drv.c199 int unit, msicount; local
235 msicount = pci_msi_count(dev->device);
236 DRM_DEBUG("MSI count = %d\n", msicount);
237 if (msicount > 1)
238 msicount = 1;
240 if (pci_alloc_msi(dev->device, &msicount) == 0) {
242 msicount);
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_drv.c269 int error, msicount; local
292 msicount = pci_msi_count(dev->device);
293 DRM_DEBUG("MSI count = %d\n", msicount);
294 if (msicount > 1)
295 msicount = 1;
297 if (pci_alloc_msi(dev->device, &msicount) == 0) {
299 msicount);
/freebsd-9.3-release/sys/dev/isp/
H A Disp_pci.c358 int msicount; member in struct:isp_pcisoftc
937 pcs->msicount = pci_msi_count(dev);
938 if (pcs->msicount > 1) {
939 pcs->msicount = 1;
941 if (pci_alloc_msi(dev, &pcs->msicount) == 0) {
1001 if (pcs->msicount) {
1041 if (pcs->msicount) {

Completed in 158 milliseconds