diff options
author | Leahy, Leroy P <leroy.p.leahy@intel.com> | 2016-03-04 09:52:14 -0800 |
---|---|---|
committer | Prince Agyeman <prince.agyeman@intel.com> | 2016-03-07 10:32:47 -0800 |
commit | e968e800ce8f1a2b34c155155106912ca8da16f0 (patch) | |
tree | f6afda724a85e6213eecbb546ddf86cd32b1850c /CorebootPayloadPkg/Library | |
parent | e4c7cefe3d088df0fa05bf78659fa8094569dd3a (diff) | |
download | edk2-platforms-e968e800ce8f1a2b34c155155106912ca8da16f0.tar.xz |
FW: [PATCH 3/9] CorebootPayloadPkg/PlatformBdsLib: Fix spelling error
-----Original Message-----
From: Leahy, Leroy P
Sent: Friday, March 4, 2016 8:58 AM
To: Ni, Ruiyu <ruiyu.ni@intel.com>; edk2-devel@lists.01.org; Bjorge, Erik C <erik.c.bjorge@intel.com>
Cc: Leahy, Leroy P <leroy.p.leahy@intel.com>
Subject: [PATCH 3/9] CorebootPayloadPkg/PlatformBdsLib: Fix spelling error
Change vender to vendor
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-by: Prince Agyeman <prince.agyeman@intel.com>
Diffstat (limited to 'CorebootPayloadPkg/Library')
3 files changed, 4 insertions, 4 deletions
diff --git a/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.c b/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.c index fec14a3be8..4414485306 100644 --- a/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.c +++ b/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.c @@ -123,7 +123,7 @@ Returns: //
// Register COM1
//
- DevicePath = AppendDevicePathNode ((EFI_DEVICE_PATH_PROTOCOL *)NULL, (EFI_DEVICE_PATH_PROTOCOL *)&gUartDeviceVenderNode);
+ DevicePath = AppendDevicePathNode ((EFI_DEVICE_PATH_PROTOCOL *)NULL, (EFI_DEVICE_PATH_PROTOCOL *)&gUartDeviceVendorNode); DevicePath = AppendDevicePathNode (DevicePath, (EFI_DEVICE_PATH_PROTOCOL *)&gUartDeviceNode);
DevicePath = AppendDevicePathNode (DevicePath, (EFI_DEVICE_PATH_PROTOCOL *)&gTerminalTypeDeviceNode);
diff --git a/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.h b/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.h index 641e1cbf01..b011553447 100644 --- a/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.h +++ b/CorebootPayloadPkg/Library/PlatformBdsLib/BdsPlatform.h @@ -38,7 +38,7 @@ extern EFI_DEVICE_PATH_PROTOCOL *gPlatformRootBridges[]; extern ACPI_HID_DEVICE_PATH gPnp16550ComPortDeviceNode;
extern UART_DEVICE_PATH gUartDeviceNode;
extern VENDOR_DEVICE_PATH gTerminalTypeDeviceNode;
-extern VENDOR_DEVICE_PATH gUartDeviceVenderNode;
+extern VENDOR_DEVICE_PATH gUartDeviceVendorNode; //
//
@@ -83,7 +83,7 @@ extern VENDOR_DEVICE_PATH gUartDeviceVenderNode; #define gPnp16550ComPort \
PNPID_DEVICE_PATH_NODE(0x0501)
-#define gUartVender \
+#define gUartVendor \ { \
{ \
HARDWARE_DEVICE_PATH, \
diff --git a/CorebootPayloadPkg/Library/PlatformBdsLib/PlatformData.c b/CorebootPayloadPkg/Library/PlatformBdsLib/PlatformData.c index 4739c3c91c..2bd66cb150 100644 --- a/CorebootPayloadPkg/Library/PlatformBdsLib/PlatformData.c +++ b/CorebootPayloadPkg/Library/PlatformBdsLib/PlatformData.c @@ -23,7 +23,7 @@ UINT16 gPlatformBootTimeOutDefault = 5; ACPI_HID_DEVICE_PATH gPnp16550ComPortDeviceNode = gPnp16550ComPort;
UART_DEVICE_PATH gUartDeviceNode = gUart;
VENDOR_DEVICE_PATH gTerminalTypeDeviceNode = gPcAnsiTerminal;
-VENDOR_DEVICE_PATH gUartDeviceVenderNode = gUartVender;
+VENDOR_DEVICE_PATH gUartDeviceVendorNode = gUartVendor; //
// Predefined platform root bridge
//
|