CorebootModulePkg: Fix various typos
Fix various typos in CorebootModulePkg. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Coeur <coeur@gmx.fr> Reviewed-by: Benjamin You <benjamin.you@intel.com>
This commit is contained in:
committed by
Benjamin You
parent
68f87b2572
commit
06516768ed
@ -23,7 +23,7 @@
|
||||
#include <Library/BaseLib.h>
|
||||
|
||||
//
|
||||
// PCI Defintions.
|
||||
// PCI Definitions.
|
||||
//
|
||||
#define PCI_BRIDGE_32_BIT_IO_SPACE 0x01
|
||||
|
||||
@ -451,7 +451,7 @@ SerialPortWritable (
|
||||
// 0 0 No cable connected. Transmit
|
||||
// 0 1 No cable connected. Transmit
|
||||
// 1 0 Cable connected, but not clear to send. Wait
|
||||
// 1 1 Cable connected, and clar to send. Transmit
|
||||
// 1 1 Cable connected, and clear to send. Transmit
|
||||
//
|
||||
return (BOOLEAN) ((SerialPortReadRegister (SerialRegisterBase, R_UART_MSR) & (B_UART_MSR_DSR | B_UART_MSR_CTS)) != (B_UART_MSR_DSR));
|
||||
}
|
||||
@ -722,7 +722,7 @@ SerialPortRead (
|
||||
/**
|
||||
Polls a serial device to see if there is any data waiting to be read.
|
||||
|
||||
Polls aserial device to see if there is any data waiting to be read.
|
||||
Polls a serial device to see if there is any data waiting to be read.
|
||||
If there is data waiting to be read from the serial device, then TRUE is returned.
|
||||
If there is no data waiting to be read from the serial device, then FALSE is returned.
|
||||
|
||||
@ -903,13 +903,13 @@ SerialPortGetControl (
|
||||
}
|
||||
|
||||
/**
|
||||
Sets the baud rate, receive FIFO depth, transmit/receice time out, parity,
|
||||
Sets the baud rate, receive FIFO depth, transmit/receive time out, parity,
|
||||
data bits, and stop bits on a serial device.
|
||||
|
||||
@param BaudRate The requested baud rate. A BaudRate value of 0 will use the
|
||||
device's default interface speed.
|
||||
On output, the value actually set.
|
||||
@param ReveiveFifoDepth The requested depth of the FIFO on the receive side of the
|
||||
@param ReceiveFifoDepth The requested depth of the FIFO on the receive side of the
|
||||
serial interface. A ReceiveFifoDepth value of 0 will use
|
||||
the device's default FIFO depth.
|
||||
On output, the value actually set.
|
||||
@ -922,7 +922,7 @@ SerialPortGetControl (
|
||||
DefaultParity will use the device's default parity value.
|
||||
On output, the value actually set.
|
||||
@param DataBits The number of data bits to use on the serial device. A DataBits
|
||||
vaule of 0 will use the device's default data bit setting.
|
||||
value of 0 will use the device's default data bit setting.
|
||||
On output, the value actually set.
|
||||
@param StopBits The number of stop bits to use on this serial device. A StopBits
|
||||
value of DefaultStopBits will use the device's default number of
|
||||
|
Reference in New Issue
Block a user