Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/EhciSched.c
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware
-
Property svn:mergeinfo
set to (toggle deleted branches)
/vendor/edk2/current 103735-103757
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/EhciSched.c
r48674 r58459 3 3 EHCI transfer scheduling routines. 4 4 5 Copyright (c) 2007 - 201 1, Intel Corporation. All rights reserved.<BR>5 Copyright (c) 2007 - 2013, Intel Corporation. All rights reserved.<BR> 6 6 This program and the accompanying materials 7 7 are licensed and made available under the terms and conditions of the BSD License … … 642 642 PciAddr = UsbHcGetPciAddressForHostMem (Ehc->MemPool, Ehc->ShortReadStop, sizeof (EHC_QTD)); 643 643 if (QtdHw->AltNext == QTD_LINK (PciAddr, FALSE)) { 644 DEBUG ((EFI_D_ INFO, "EhcCheckUrbResult: Short packet read, break\n"));644 DEBUG ((EFI_D_VERBOSE, "EhcCheckUrbResult: Short packet read, break\n")); 645 645 646 646 Finished = TRUE; … … 648 648 } 649 649 650 DEBUG ((EFI_D_ INFO, "EhcCheckUrbResult: Short packet read, continue\n"));650 DEBUG ((EFI_D_VERBOSE, "EhcCheckUrbResult: Short packet read, continue\n")); 651 651 } 652 652 } … … 695 695 696 696 Status = EFI_SUCCESS; 697 Loop = (TimeOut * EHC_1_MILLISECOND / EHC_SYNC_POLL_INTERVAL) + 1;697 Loop = TimeOut * EHC_1_MILLISECOND; 698 698 Finished = FALSE; 699 699 InfiniteLoop = FALSE; … … 715 715 } 716 716 717 gBS->Stall (EHC_ SYNC_POLL_INTERVAL);717 gBS->Stall (EHC_1_MICROSECOND); 718 718 } 719 719
Note:
See TracChangeset
for help on using the changeset viewer.