X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FBus%2FPci%2FEhciDxe%2FEhci.h;fp=MdeModulePkg%2FBus%2FPci%2FEhciDxe%2FEhci.h;h=3415816c53b60e75e960f845fd0f820007a2df19;hp=be81bde40d9b7110185c6dd7e72e8825c344ac8a;hb=ed356b9e80d46c40457dd90f5352835e6611200b;hpb=04b34efb40309b55ed9e56c294ee556001e4366f diff --git a/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.h b/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.h index be81bde40d..3415816c53 100644 --- a/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.h +++ b/MdeModulePkg/Bus/Pci/EhciDxe/Ehci.h @@ -85,13 +85,13 @@ typedef struct _USB2_HC_DEV USB2_HC_DEV; #define EHC_TPL TPL_NOTIFY // -//Iterate through the doule linked list. NOT delete safe +//Iterate through the double linked list. NOT delete safe // #define EFI_LIST_FOR_EACH(Entry, ListHead) \ for(Entry = (ListHead)->ForwardLink; Entry != (ListHead); Entry = Entry->ForwardLink) // -//Iterate through the doule linked list. This is delete-safe. +//Iterate through the double linked list. This is delete-safe. //Don't touch NextEntry // #define EFI_LIST_FOR_EACH_SAFE(Entry, NextEntry, ListHead) \ @@ -146,7 +146,7 @@ struct _USB2_HC_DEV { EHC_QH *ReclaimHead; // - // Peroidic (interrupt) transfer schedule data: + // Periodic (interrupt) transfer schedule data: // VOID *PeriodFrame; // the buffer pointed by this pointer is used to store pci bus address of the QH descriptor. VOID *PeriodFrameHost; // the buffer pointed by this pointer is used to store host memory address of the QH descriptor. @@ -225,7 +225,7 @@ EhcDriverBindingStart ( ); /** - Stop this driver on ControllerHandle. Support stoping any child handles + Stop this driver on ControllerHandle. Support stopping any child handles created by this driver. @param This Protocol instance pointer.