Changeset 50780 in vbox
- Timestamp:
- Mar 14, 2014 1:35:15 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxPci/linux/VBoxPci-linux.c
r50779 r50780 352 352 const char* currentDriver; 353 353 uint16_t uVendor, uDevice; 354 intfDetach = 0;354 bool fDetach = 0; 355 355 356 356 if (!g_VBoxPciGlobals.fPciStubModuleAvail) … … 379 379 currentDriver ? currentDriver : "<none>"); 380 380 381 fDetach = (currentDriver == NULL || (strcmp(currentDriver, PCI_STUB_MODULE) != 0)) ? 1 : 0;381 fDetach = (currentDriver == NULL || (strcmp(currentDriver, PCI_STUB_MODULE) != 0)); 382 382 383 383 /* Init previous driver data. */
Note:
See TracChangeset
for help on using the changeset viewer.