diff options
author | Star Zeng <star.zeng@intel.com> | 2015-11-30 03:15:07 +0000 |
---|---|---|
committer | vanjeff <vanjeff@Edk2> | 2015-11-30 03:15:07 +0000 |
commit | 714246d34b1f6541d9294e501b01f05083794876 (patch) | |
tree | b53db4721798b1d78c55414ea55120c747a4defa | |
parent | f7c016a6ae6e8f2a5464b5f0afd9f65014925903 (diff) | |
download | edk2-platforms-714246d34b1f6541d9294e501b01f05083794876.tar.xz |
MdeModulePkg BaseSerialPortLib16550: Fix typo in SerialPortWrite()
The "read" word in SerialPortWrite() header comment block should be
"write".
(Sync patch r18910 from main trunk.)
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/branches/UDK2015@19011 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.c b/MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.c index 3209115a3f..5b6608d400 100644 --- a/MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.c +++ b/MdeModulePkg/Library/BaseSerialPortLib16550/BaseSerialPortLib16550.c @@ -574,7 +574,7 @@ SerialPortInitialize ( @retval 0 NumberOfBytes is 0.
@retval >0 The number of bytes written to the serial device.
- If this value is less than NumberOfBytes, then the read operation failed.
+ If this value is less than NumberOfBytes, then the write operation failed.
**/
UINTN
|