Changeset 81543 in vbox
- Timestamp:
- Oct 25, 2019 1:32:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r81541 r81543 350 350 /** Dropped URBs (endpoint halted, or URB canceled). */ 351 351 STAMCOUNTER StatDroppedUrbs; 352 /** Profiling ohciR3FrameBoundaryTimer. */353 STAMPROFILE StatTimer;354 352 355 353 /** VM timer frequency used for frame timer calculations. */ … … 3394 3392 3395 3393 /** 3396 * A worker for ohciR3ServiceIsochronousEndpoint which submits the specified 3397 * TD. 3394 * A worker for ohciR3ServiceIsochronousEndpoint which submits the specified TD. 3398 3395 * 3399 3396 * @returns true on success. … … 3804 3801 } 3805 3802 3803 3806 3804 /** 3807 3805 * Abort outstanding transfers on the bulk list. … … 4174 4172 } 4175 4173 4174 4176 4175 /** 4177 4176 * Generate a Start-Of-Frame event, and set a timer for End-Of-Frame. … … 4278 4277 } 4279 4278 4279 4280 4280 /** 4281 4281 * Updates the HcFmNumber and FNO registers. … … 4287 4287 pThis->fno = 1; 4288 4288 } 4289 4289 4290 4290 4291 /** … … 4329 4330 } 4330 4331 4331 /** @interface_method_impl{VUSBIROOTHUBPORT,pfnFrameRateChanged} */ 4332 4333 /** 4334 * @interface_method_impl{VUSBIROOTHUBPORT,pfnFrameRateChanged} 4335 */ 4332 4336 static DECLCALLBACK(void) ohciR3FrameRateChanged(PVUSBIROOTHUBPORT pInterface, uint32_t u32FrameRate) 4333 4337 { … … 4344 4348 } 4345 4349 4346 /**4347 * Do frame processing on frame boundary4348 */4349 static DECLCALLBACK(void) ohciR3FrameBoundaryTimer(PPDMDEVINS pDevIns, PTMTIMER pTimer, void *pvUser)4350 {4351 RT_NOREF(pDevIns, pTimer, pvUser);4352 }4353 4350 4354 4351 /** … … 4368 4365 } 4369 4366 4367 4370 4368 /** 4371 4369 * Stop sending SOF tokens on the bus … … 4377 4375 VUSBIDevPowerOff(pThisCC->RootHub.pIDev); 4378 4376 } 4377 4379 4378 4380 4379 /**
Note:
See TracChangeset
for help on using the changeset viewer.