diff options
author | Randy Pawell <randy_pawell@hp.com> | 2014-12-04 00:55:50 +0000 |
---|---|---|
committer | sfu5 <sfu5@Edk2> | 2014-12-04 00:55:50 +0000 |
commit | 8f586b85c3f617ba802e663b4b3b303e06140863 (patch) | |
tree | b5fb144b5039b9ebe8598c748e11936ac27f3a73 /NetworkPkg/TcpDxe/TcpMisc.c | |
parent | 35f910f08b58e978bc9251872635075d6f422e48 (diff) | |
download | edk2-platforms-8f586b85c3f617ba802e663b4b3b303e06140863.tar.xz |
NetworkPkg: Source fixes and cleanup for ARMGCC compiles
- Fix EFI_IPv4_ADDRESS usages to use a macro to copy the structure
instead of direct assignment, to avoid runtime alignment errors.
- Delete excess local variables that are initialized but otherwise unused.
- Add LibraryClasses.ARM & AARCH64 section in NetworkPkg.dsc file,
containing a CompilerIntrinsicsLib null-library, required for successful
standalone package builds (copied from MdeModulePkg.dsc).
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Randy Pawell <randy_pawell@hp.com>
Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
Reviewed-by: Ye Ting <ting.ye@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16472 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'NetworkPkg/TcpDxe/TcpMisc.c')
-rw-r--r-- | NetworkPkg/TcpDxe/TcpMisc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/NetworkPkg/TcpDxe/TcpMisc.c b/NetworkPkg/TcpDxe/TcpMisc.c index 5394f7d1ca..0a4eda37c8 100644 --- a/NetworkPkg/TcpDxe/TcpMisc.c +++ b/NetworkPkg/TcpDxe/TcpMisc.c @@ -1,6 +1,7 @@ /** @file
Misc support routines for TCP driver.
+ (C) Copyright 2014 Hewlett-Packard Development Company, L.P.<BR>
Copyright (c) 2009 - 2014, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
@@ -428,7 +429,6 @@ TcpInsertTcb ( LIST_ENTRY *Entry;
LIST_ENTRY *Head;
TCP_CB *Node;
- TCP_PROTO_DATA *TcpProto;
ASSERT (
(Tcb != NULL) &&
@@ -466,7 +466,6 @@ TcpInsertTcb ( InsertHeadList (Head, &Tcb->List);
- TcpProto = (TCP_PROTO_DATA *) Tcb->Sk->ProtoReserved;
return 0;
}
|