Changeset 77727 in vbox for trunk/src/VBox/HostDrivers/VBoxPci
- Timestamp:
- Mar 15, 2019 2:14:18 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129375
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxPci/VBoxPci.c
r76553 r77727 160 160 161 161 162 #if 0 /** @todo r=bird: Who the heck is supposed to call this?!? */ 162 163 DECLHIDDEN(void) vboxPciDevCleanup(PVBOXRAWPCIINS pThis) 163 164 { … … 180 181 vboxPciGlobalsUnlock(pThis->pGlobals); 181 182 } 183 #endif 182 184 183 185 … … 674 676 } 675 677 678 676 679 /** 677 680 * Try to close the IDC connection to SUPDRV if established. … … 683 686 * @param pGlobals Pointer to the globals. 684 687 */ 685 DECLHIDDEN(int)vboxPciDeleteIdc(PVBOXRAWPCIGLOBALS pGlobals)688 static int vboxPciDeleteIdc(PVBOXRAWPCIGLOBALS pGlobals) 686 689 { 687 690 int rc; … … 718 721 * @param pGlobals Pointer to the globals. 719 722 */ 720 DECLHIDDEN(int)vboxPciInitGlobals(PVBOXRAWPCIGLOBALS pGlobals)723 static int vboxPciInitGlobals(PVBOXRAWPCIGLOBALS pGlobals) 721 724 { 722 725 /* … … 742 745 * Deletes the globals. 743 746 * 744 *745 747 * @param pGlobals Pointer to the globals. 746 748 */ 747 DECLHIDDEN(void)vboxPciDeleteGlobals(PVBOXRAWPCIGLOBALS pGlobals)749 static void vboxPciDeleteGlobals(PVBOXRAWPCIGLOBALS pGlobals) 748 750 { 749 751 Assert(!pGlobals->fIDCOpen); … … 783 785 { 784 786 int rc = vboxPciDeleteIdc(pGlobals); 785 786 787 if (RT_SUCCESS(rc)) 787 788 vboxPciDeleteGlobals(pGlobals);
Note:
See TracChangeset
for help on using the changeset viewer.