Changeset 50797 in vbox for trunk/src/VBox/HostDrivers/VBoxPci/linux
- Timestamp:
- Mar 17, 2014 12:00:51 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxPci/linux/VBoxPci-linux.c
r50782 r50797 293 293 if (pci_reset_function(pIns->pPciDev)) 294 294 { 295 printk(KERN_DEBUG "vboxpci: pci_reset_function() failed\n"); 295 vbpci_printk(KERN_DEBUG, pIns->pPciDev, 296 "pci_reset_function() failed\n"); 296 297 rc = VERR_INTERNAL_ERROR; 297 298 } … … 539 540 uint8_t uDevFn = (pIns->HostPciAddress) & 0xff; 540 541 541 printk(KERN_DEBUG "vboxpci: reattaching old host driver %s\n", pIns->szPrevDriver); 542 vbpci_printk(KERN_DEBUG, pPciDev, 543 "reattaching old host driver %s\n", pIns->szPrevDriver); 542 544 /* 543 545 * Now perform kernel analog of: … … 767 769 int error; 768 770 769 printk(KERN_DEBUG "linux vboxPciOsDevMapRegion: reg=%d start=%llx size=%lld\n", iRegion, RegionStart, u64RegionSize); 771 vbpci_printk(KERN_DEBUG, pPciDev, "reg=%d start=%llx size=%lld\n", 772 iRegion, RegionStart, u64RegionSize); 770 773 771 774 if (!pPciDev) … … 774 777 if (iRegion < 0 || iRegion > 6) 775 778 { 776 printk(KERN_DEBUG "vboxPciOsDevMapRegion: invalid region:%d\n", iRegion);779 vbpci_printk(KERN_DEBUG, pPciDev, "invalid region %d\n", iRegion); 777 780 return VERR_INVALID_PARAMETER; 778 781 } … … 808 811 if (!result) 809 812 { 810 printk(KERN_DEBUG "cannot ioremap_nocache\n");813 vbpci_printk(KERN_DEBUG, pPciDev, "ioremap_nocache() failed\n"); 811 814 pci_release_region(pPciDev, iRegion); 812 815 return VERR_MAP_FAILED;
Note:
See TracChangeset
for help on using the changeset viewer.