]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/Network/IScsiDxe/IScsiImpl.h
sync comments, fix function header, rename variable name to follow coding style.
[mirror_edk2.git] / MdeModulePkg / Universal / Network / IScsiDxe / IScsiImpl.h
index 7019a78c9e933d2f97aaefbe89241fd6d4a6c03e..94ae9fe63fe1d6aff19e891668be632412199ffd 100644 (file)
@@ -1,6 +1,7 @@
-/*++\r
+/** @file\r
+  The header file of IScsiImpl.c\r
 \r
-Copyright (c) 2004 - 2007, Intel Corporation\r
+Copyright (c) 2004 - 2008, Intel Corporation\r
 All rights reserved. This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -14,12 +15,15 @@ Module Name:
   IScsiImpl.h\r
 \r
 Abstract:\r
+  The header file of IScsiImpl.c\r
 \r
---*/\r
+**/\r
 \r
 #ifndef _ISCSI_IMPL_H_\r
 #define _ISCSI_IMPL_H_\r
 \r
+#include <Uefi.h>\r
+\r
 #include <Library/NetLib.h>\r
 #include <Library/PrintLib.h>\r
 #include <Library/UefiRuntimeServicesTableLib.h>\r
@@ -57,10 +61,10 @@ struct _ISCSI_SESSION {
   UINT32                    InitiatorTaskTag;\r
   UINT16                    NextCID;\r
 \r
-  NET_LIST_ENTRY            Conns;\r
+  LIST_ENTRY                Conns;\r
   UINT32                    NumConns;\r
 \r
-  NET_LIST_ENTRY            TcbList;\r
+  LIST_ENTRY                TcbList;\r
 \r
   //\r
   // session-wide parameters\r
@@ -83,7 +87,7 @@ struct _ISCSI_SESSION {
 \r
 struct _ISCSI_CONNECTION {\r
   UINT32            Signature;\r
-  NET_LIST_ENTRY    Link;\r
+  LIST_ENTRY        Link;\r
 \r
   EFI_EVENT         TimeoutEvent;\r
 \r