diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-06-02 15:45:42 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-06-02 15:55:23 +0800 |
commit | b0b626ea2f16faca9f864599384fd184a89e0195 (patch) | |
tree | b89038908708c1ce26b44a3fd84c68945df91a18 /MdeModulePkg | |
parent | 5220897839dd583e9d1f749fb4d8196ff86ccc8b (diff) | |
download | edk2-b0b626ea2f16faca9f864599384fd184a89e0195.tar.gz edk2-b0b626ea2f16faca9f864599384fd184a89e0195.tar.bz2 edk2-b0b626ea2f16faca9f864599384fd184a89e0195.zip |
MdeModulePkg/Xhci: Correct the indention of comments
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c b/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c index 9e34faf263..457344051b 100644 --- a/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c +++ b/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"));
|