diff options
author | Gary Lin <glin@suse.com> | 2016-10-19 15:01:38 +0800 |
---|---|---|
committer | david wei <david.wei@intel.com> | 2016-10-27 14:31:55 +0800 |
commit | 2e182e30e5712cbd39ed6f851e5fd00f9bfef7dc (patch) | |
tree | 58775bebf5f361368db31afcf0fa7e4ee46c3010 /Vlv2TbltDevicePkg/PlatformDxe | |
parent | 04d8d8835e87155f2c50ab39225bae504dee2c5d (diff) | |
download | edk2-platforms-2e182e30e5712cbd39ed6f851e5fd00f9bfef7dc.tar.xz |
Vlv2TbltDevicePkg: Fix typos in comments
- TURE -> TRUE
- stardard -> standard
- aligments -> alignments
- a a -> a
- stoping -> stopping
- defalut -> default
- excute -> execute
- Incude -> Include
- futhure -> future
- Predfined -> Predefined
- minimue -> minimum
- predeined -> predefined
- dirver -> driver
- paramter -> parameter
- funciton -> function
- immediatly -> immediately
Cc: David Wei <david.wei@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Gary Lin <glin@suse.com>
Diffstat (limited to 'Vlv2TbltDevicePkg/PlatformDxe')
-rw-r--r-- | Vlv2TbltDevicePkg/PlatformDxe/PciBus.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Vlv2TbltDevicePkg/PlatformDxe/PciBus.h b/Vlv2TbltDevicePkg/PlatformDxe/PciBus.h index 89e31d265a..412e9f180d 100644 --- a/Vlv2TbltDevicePkg/PlatformDxe/PciBus.h +++ b/Vlv2TbltDevicePkg/PlatformDxe/PciBus.h @@ -187,7 +187,7 @@ struct _PCI_IO_DEVICE { LIST_ENTRY ChildList;
//
- // TURE if the PCI bus driver creates the handle for this PCI device
+ // TRUE if the PCI bus driver creates the handle for this PCI device
//
BOOLEAN Registered;
@@ -266,7 +266,7 @@ struct _PCI_IO_DEVICE { //
// Per PCI to PCI Bridge spec, I/O window is 4K aligned,
- // but some chipsets support non-stardard I/O window aligments less than 4K.
+ // but some chipsets support non-standard I/O window alignments less than 4K.
// This field is used to support this case.
//
UINT16 BridgeIoAlignment;
@@ -308,8 +308,8 @@ extern BOOLEAN mReserveVgaAliases; @param _p Specified device.
- @retval TRUE Device is a a GFX device.
- @retval FALSE Device is not a a GFX device.
+ @retval TRUE Device is a GFX device.
+ @retval FALSE Device is not a GFX device.
**/
#define IS_PCI_GFX(_p) IS_CLASS2 (_p, PCI_CLASS_DISPLAY, PCI_CLASS_DISPLAY_OTHER)
@@ -320,7 +320,7 @@ extern BOOLEAN mReserveVgaAliases; @param This Protocol instance pointer.
@param Controller Handle of device to test.
- @param RemainingDevicePath Optional parameter use to pick a specific child.
+ @param RemainingDevicePath Optional parameter use to pick a specific child
device to start.
@retval EFI_SUCCESS This driver supports this device.
@@ -342,7 +342,7 @@ PciBusDriverBindingSupported ( @param This Protocol instance pointer.
@param Controller Handle of device to bind driver to.
- @param RemainingDevicePath Optional parameter use to pick a specific child.
+ @param RemainingDevicePath Optional parameter use to pick a specific child
device to start.
@retval EFI_SUCCESS This driver is added to ControllerHandle.
@@ -359,7 +359,7 @@ PciBusDriverBindingStart ( );
/**
- 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.
|