Changeset 38350 in vbox for trunk/src/VBox/Devices/USB
- Timestamp:
- Aug 8, 2011 1:57:50 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73370
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r37668 r38350 4927 4927 POHCI pOhci = PDMINS_2_DATA(pDevIns, POHCI); 4928 4928 POHCIROOTHUB pRh = &pOhci->RootHub; 4929 unsigned i;4930 4929 LogFlow(("ohciR3SavePrep: \n")); 4931 4930 … … 4933 4932 * Detach all proxied devices. 4934 4933 */ 4934 PDMCritSectEnter(pOhci->pDevInsR3->pCritSectRoR3, VERR_IGNORED); 4935 4935 /** @todo we a) can't tell which are proxied, and b) this won't work well when continuing after saving! */ 4936 for ( i = 0; i < RT_ELEMENTS(pRh->aPorts); i++)4936 for (unsigned i = 0; i < RT_ELEMENTS(pRh->aPorts); i++) 4937 4937 { 4938 4938 PVUSBIDEVICE pDev = pRh->aPorts[i].pDev; … … 4948 4948 } 4949 4949 } 4950 PDMCritSectLeave(pOhci->pDevInsR3->pCritSectRoR3); 4950 4951 4951 4952 /*
Note:
See TracChangeset
for help on using the changeset viewer.