diff options
Diffstat (limited to 'Core/MdeModulePkg')
-rw-r--r-- | Core/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Core/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c b/Core/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c index 2ad5ffd396..078e9e5e30 100644 --- a/Core/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c +++ b/Core/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c @@ -1369,10 +1369,10 @@ XhciDelAllAsyncIntTransfers ( EFI_LIST_FOR_EACH_SAFE (Entry, Next, &Xhc->AsyncIntTransfers) {
Urb = EFI_LIST_CONTAINER (Entry, URB, UrbList);
- //
- // Device doesn't finish the IntTransfer until real data comes
- // So the TRB should be removed as well.
- //
+ //
+ // Device doesn't finish the IntTransfer until real data comes
+ // So the TRB should be removed as well.
+ //
Status = XhcDequeueTrbFromEndpoint (Xhc, Urb);
if (EFI_ERROR (Status)) {
DEBUG ((EFI_D_ERROR, "XhciDelAllAsyncIntTransfers: XhcDequeueTrbFromEndpoint failed\n"));
|