Changeset 50798 in vbox for trunk/src/VBox/HostDrivers/VBoxPci/linux/VBoxPci-linux.c
- Timestamp:
- Mar 17, 2014 12:13:07 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92824
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxPci/linux/VBoxPci-linux.c
r50797 r50798 618 618 int rc; 619 619 620 printk(KERN_DEBUG "vboxpci: vboxPciOsDevInit: dev=%x\n", pIns->HostPciAddress);621 622 620 if (fFlags & PCIRAWDRIVERRFLAG_DETACH_HOST_DRIVER) 623 621 { … … 635 633 (pIns->HostPciAddress) & 0xff); 636 634 637 printk(KERN_DEBUG "vboxpci: vboxPciOsDevInit: dev=%x pdev=%p\n",638 pIns->HostPciAddress, pPciDev);639 640 635 if (!pPciDev) 641 636 return 0; 642 637 643 638 pIns->pPciDev = pPciDev; 639 vbpci_printk(KERN_DEBUG, pPciDev, "%s\n", __func__); 644 640 645 641 rc = pci_enable_device(pPciDev); … … 648 644 if (pci_enable_msi(pPciDev) == 0) 649 645 { 650 vbpci_printk(KERN_DEBUG, pPciDev, "enabled MSI\n");651 646 pIns->fMsiUsed = true; 652 647 }
Note:
See TracChangeset
for help on using the changeset viewer.