X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=EdkModulePkg%2FBus%2FPci%2FEhci%2FDxe%2FEhciSched.c;fp=EdkModulePkg%2FBus%2FPci%2FEhci%2FDxe%2FEhciSched.c;h=9f1a15d09327348588a2b63f00d677a9f618ef38;hp=1a947058be0a378edcc86987aeac920c7b549bed;hb=3727980651ea6d34f0567af9af9c04107428535d;hpb=d02ea958732846b91381c9050a5f43d503953974 diff --git a/EdkModulePkg/Bus/Pci/Ehci/Dxe/EhciSched.c b/EdkModulePkg/Bus/Pci/Ehci/Dxe/EhciSched.c index 1a947058be..9f1a15d093 100644 --- a/EdkModulePkg/Bus/Pci/Ehci/Dxe/EhciSched.c +++ b/EdkModulePkg/Bus/Pci/Ehci/Dxe/EhciSched.c @@ -79,7 +79,7 @@ Returns: 0 ); if (EFI_ERROR (Status)) { - DEBUG ((gEHCErrorLevel, "PciIo->AllocateBuffer Failed\n")); + DEBUG ((gEHCErrorLevel, "EHCI: PciIo->AllocateBuffer Failed\n")); Status = EFI_OUT_OF_RESOURCES; goto exit; } @@ -93,7 +93,7 @@ Returns: &Map ); if (EFI_ERROR (Status) || (BufferSizeInBytes != EFI_PAGE_SIZE)) { - DEBUG ((gEHCErrorLevel, "PciIo->MapBuffer Failed\n")); + DEBUG ((gEHCErrorLevel, "EHCI: PciIo->MapBuffer Failed\n")); Status = EFI_OUT_OF_RESOURCES; goto free_buffer; } @@ -107,7 +107,7 @@ Returns: Status = SetCtrlDataStructSeg (HcDev); if (EFI_ERROR (Status)) { - DEBUG ((gEHCErrorLevel, "SetCtrlDataStructSeg Failed\n")); + DEBUG ((gEHCErrorLevel, "EHCI: SetCtrlDataStructSeg Failed\n")); Status = EFI_DEVICE_ERROR; goto unmap_buffer; }