diff --git a/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h b/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h index 279407475b..715a5ab1c1 100644 --- a/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h +++ b/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h @@ -99,7 +99,7 @@ struct _PEI_USB2_HC_DEV { EDKII_IOMMU_PPI *IoMmu; EFI_PEI_PPI_DESCRIPTOR PpiDescriptor; // - // EndOfPei callback is used to stop the XHC DMA operation + // EndOfPei callback is used to stop the EHC DMA operation // after exit PEI phase. // EFI_PEI_NOTIFY_DESCRIPTOR EndOfPeiNotifyList; diff --git a/MdeModulePkg/Bus/Pci/EhciPei/EhciUrb.c b/MdeModulePkg/Bus/Pci/EhciPei/EhciUrb.c index 3dadcd60b6..baacf5d560 100644 --- a/MdeModulePkg/Bus/Pci/EhciPei/EhciUrb.c +++ b/MdeModulePkg/Bus/Pci/EhciPei/EhciUrb.c @@ -576,7 +576,12 @@ EhcCreateUrb ( if (Urb->Qh == NULL) { goto ON_ERROR; } - + + Urb->RequestPhy = NULL; + Urb->RequestMap = NULL; + Urb->DataPhy = NULL; + Urb->DataMap = NULL; + // // Map the request and user data // @@ -591,9 +596,6 @@ EhcCreateUrb ( Urb->RequestPhy = (VOID *) ((UINTN) PhyAddr); Urb->RequestMap = Map; - } else { - Urb->RequestPhy = NULL; - Urb->RequestMap = NULL; } if (Data != NULL) { @@ -613,9 +615,6 @@ EhcCreateUrb ( Urb->DataPhy = (VOID *) ((UINTN) PhyAddr); Urb->DataMap = Map; - } else { - Urb->DataPhy = NULL; - Urb->DataMap = NULL; } Status = EhcCreateQtds (Ehc, Urb);