Fix some typo.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8008 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
gikidy
2009-04-02 05:34:26 +00:00
parent f98c4b825e
commit 28d3e14ffb
15 changed files with 111 additions and 110 deletions

View File

@@ -19,11 +19,11 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
Initialize the serial device hardware.
If no initialization is required, then return RETURN_SUCCESS.
If the serial device was successfuly initialized, then return RETURN_SUCCESS.
If the serial device was successfully initialized, then return RETURN_SUCCESS.
If the serial device could not be initialized, then return RETURN_DEVICE_ERROR.
@retval RETURN_SUCCESS The serial device was initialized.
@retval RETURN_DEVICE_ERROR The serail device could not be initialized.
@retval RETURN_DEVICE_ERROR The serial device could not be initialized.
**/
RETURN_STATUS
@@ -70,7 +70,7 @@ SerialPortWrite (
@param NumberOfBytes Number of bytes which will be read.
@retval 0 Read data failed, No data is to be read.
@retval >0 Aactual number of bytes read from serial device.
@retval >0 Actual number of bytes read from serial device.
**/
UINTN
@@ -83,7 +83,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.