Changeset 59176 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB/solaris/VBoxUSB-solaris.c
- Timestamp:
- Dec 17, 2015 3:11:01 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/solaris/VBoxUSB-solaris.c
r59154 r59176 696 696 if (RT_SUCCESS(rc)) 697 697 { 698 #if 0 698 699 LogRel((DEVICE_NAME ": Captured %s %s (Ident=%s)\n", pState->szMfg, 699 700 pState->szProduct, pState->ClientInfo.szDeviceIdent)); 701 #else 702 /* Until IPRT R0 logging is fixed. See @bugref{6657#c7} */ 703 cmn_err(CE_CONT, "Captured %s %s (Ident=%s)\n", pState->szMfg, 704 pState->szProduct, pState->ClientInfo.szDeviceIdent); 705 #endif 700 706 return DDI_SUCCESS; 701 707 } … … 886 892 ddi_remove_minor_node(pState->pDip, NULL); 887 893 894 #if 0 888 895 LogRel((DEVICE_NAME ": Released %s %s (Ident=%s)\n", pState->szMfg, pState->szProduct, 889 896 pState->ClientInfo.szDeviceIdent)); 897 #else 898 /* Until IPRT R0 logging is fixed. See @bugref{6657#c7} */ 899 cmn_err(CE_CONT, "Released %s %s (Ident=%s)\n", pState->szMfg, pState->szProduct, pState->ClientInfo.szDeviceIdent); 900 #endif 890 901 891 902 ddi_soft_state_free(g_pVBoxUSBSolarisState, instance);
Note:
See TracChangeset
for help on using the changeset viewer.