summaryrefslogtreecommitdiffstats
path: root/NetworkPkg/HttpBootDxe/HttpBootSupport.h
diff options
context:
space:
mode:
authorPaulo Alcantara <paulo.alc.cavalcanti@hp.com>2016-01-12 01:37:48 +0000
committersfu5 <sfu5@Edk2>2016-01-12 01:37:48 +0000
commitef422fc53c4bc978767fcee35b284f61c02ea6d5 (patch)
tree73417ffd6f2d7ee8dca7dbaba24c4a2c55fcbec4 /NetworkPkg/HttpBootDxe/HttpBootSupport.h
parent91e914f5876f35317638771103f64baf903a9bfc (diff)
downloadedk2-ef422fc53c4bc978767fcee35b284f61c02ea6d5.tar.gz
edk2-ef422fc53c4bc978767fcee35b284f61c02ea6d5.tar.bz2
edk2-ef422fc53c4bc978767fcee35b284f61c02ea6d5.zip
NetworkPkg: Fix some typos in Http boot driver.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Paulo Alcantara <paulo.alc.cavalcanti@hp.com> Reviewed-by: Jiaxin Wu <jiaxin.wu@intel.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19640 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'NetworkPkg/HttpBootDxe/HttpBootSupport.h')
-rw-r--r--NetworkPkg/HttpBootDxe/HttpBootSupport.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/NetworkPkg/HttpBootDxe/HttpBootSupport.h b/NetworkPkg/HttpBootDxe/HttpBootSupport.h
index d5956720a7..2eba14e026 100644
--- a/NetworkPkg/HttpBootDxe/HttpBootSupport.h
+++ b/NetworkPkg/HttpBootDxe/HttpBootSupport.h
@@ -168,7 +168,7 @@ typedef union {
} HTTP_IO_CONFIG_DATA;
//
-// HTTO_IO wrapper of the EFI HTTP service.
+// HTTP_IO wrapper of the EFI HTTP service.
//
typedef struct {
UINT8 IpVersion;
@@ -196,7 +196,7 @@ typedef struct {
EFI_HTTP_HEADER *Headers;
UINTN BodyLength;
CHAR8 *Body;
-} HTTP_IO_RESOPNSE_DATA;
+} HTTP_IO_RESPONSE_DATA;
/**
Retrieve the host address using the EFI_DNS6_PROTOCOL.
@@ -303,7 +303,7 @@ HttpIoSendRequest (
FALSE to continue receive the previous response message.
@param[out] ResponseData Point to a wrapper of the received response data.
- @retval EFI_SUCCESS The HTTP resopnse is received.
+ @retval EFI_SUCCESS The HTTP response is received.
@retval EFI_INVALID_PARAMETER One or more parameters are invalid.
@retval EFI_OUT_OF_RESOURCES Failed to allocate memory.
@retval EFI_DEVICE_ERROR An unexpected network or system error occurred.
@@ -314,7 +314,7 @@ EFI_STATUS
HttpIoRecvResponse (
IN HTTP_IO *HttpIo,
IN BOOLEAN RecvMsgHeader,
- OUT HTTP_IO_RESOPNSE_DATA *ResponseData
+ OUT HTTP_IO_RESPONSE_DATA *ResponseData
);
#endif