Changeset 70088 in vbox
- Timestamp:
- Dec 12, 2017 5:38:54 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119636
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-haiku.c
r70066 r70088 482 482 if (RT_SUCCESS(rc)) 483 483 { 484 /* 485 * Read host configuration. 486 */ 487 VGDrvCommonProcessOptionsFromHost(&g_DevExt); 488 484 489 LogRel((MODULE_NAME ": loaded successfully\n")); 485 490 return B_OK; -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-solaris.c
r70066 r70088 320 320 if (rc == DDI_SUCCESS) 321 321 { 322 rc = ddi_regs_map_setup(pDip, 2, &g_pMMIOBase, 0, g_cbMMIO, &deviceAttr, 323 &g_PciMMIOHandle); 322 rc = ddi_regs_map_setup(pDip, 2, &g_pMMIOBase, 0, g_cbMMIO, &deviceAttr, &g_PciMMIOHandle); 324 323 if (rc == DDI_SUCCESS) 325 324 { … … 342 341 if (RT_SUCCESS(rc)) 343 342 { 343 /* 344 * Read host configuration. 345 */ 346 VGDrvCommonProcessOptionsFromHost(&g_DevExt); 347 348 344 349 rc = ddi_create_minor_node(pDip, DEVICE_NAME, S_IFCHR, instance, DDI_PSEUDO, 0 /* fFlags */); 345 350 if (rc == DDI_SUCCESS)
Note:
See TracChangeset
for help on using the changeset viewer.