Changeset 104250 in vbox
- Timestamp:
- Apr 9, 2024 11:55:04 AM (11 months ago)
- svn:sync-xref-src-repo-rev:
- 162703
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r104124 r104250 911 911 static DECLCALLBACK(bool) ohciR3RhXferError(PVUSBIROOTHUBPORT pInterface, PVUSBURB pUrb); 912 912 913 static bool ohciR3IsTdInFlight(POHCICC pThisCC, uint32_t GCPhysTD); 913 914 static int ohciR3InFlightFind(POHCICC pThisCC, uint32_t GCPhysTD); 914 915 # if defined(VBOX_STRICT) || defined(LOG_ENABLED) … … 1942 1943 static void ohciR3InFlightAdd(POHCI pThis, POHCICC pThisCC, uint32_t GCPhysTD, PVUSBURB pUrb) 1943 1944 { 1945 if (ohciR3IsTdInFlight(pThisCC, GCPhysTD)) 1946 { 1947 PPDMDEVINS pDevIns = pThisCC->pDevInsR3; 1948 ohciR3RaiseUnrecoverableError(pDevIns, pThis, 10); 1949 return; 1950 } 1951 1944 1952 int i = ohciR3InFlightFindFree(pThisCC, (GCPhysTD >> 4) % RT_ELEMENTS(pThisCC->aInFlight)); 1945 1953 if (i >= 0)
Note:
See TracChangeset
for help on using the changeset viewer.