summaryrefslogtreecommitdiff
path: root/IntelFrameworkModulePkg/Include
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-24 05:33:36 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-24 05:33:36 +0000
commitb4b6c8de1ea59f61f339798ab1e24eb1e1f64ad5 (patch)
treeff2943b8cfc24e0acb0584ba16242e4fd189f5f5 /IntelFrameworkModulePkg/Include
parent736e104fa3c33d23dde748cd9576056d533e11b4 (diff)
downloadedk2-platforms-b4b6c8de1ea59f61f339798ab1e24eb1e1f64ad5.tar.xz
Update code style and comments
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8640 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'IntelFrameworkModulePkg/Include')
-rw-r--r--IntelFrameworkModulePkg/Include/Guid/LzmaDecompress.h15
-rw-r--r--IntelFrameworkModulePkg/Include/Guid/TianoDecompress.h4
-rw-r--r--IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h10
3 files changed, 11 insertions, 18 deletions
diff --git a/IntelFrameworkModulePkg/Include/Guid/LzmaDecompress.h b/IntelFrameworkModulePkg/Include/Guid/LzmaDecompress.h
index b64d0365c4..65031abf88 100644
--- a/IntelFrameworkModulePkg/Include/Guid/LzmaDecompress.h
+++ b/IntelFrameworkModulePkg/Include/Guid/LzmaDecompress.h
@@ -1,6 +1,7 @@
-/*++
+/** @file
+ Lzma Custom decompress algorithm Guid definition
-Copyright (c) 2006 - 2007, Intel Corporation
+Copyright (c) 2009, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -9,15 +10,7 @@ http://opensource.org/licenses/bsd-license.php
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-Module Name:
-
- LzmaDecompress.h
-
-Abstract:
-
- Lzma Custom decompress algorithm Guid definitions
-
---*/
+**/
#ifndef __LZMA_DECOMPRESS_GUID_H__
#define __LZMA_DECOMPRESS_GUID_H__
diff --git a/IntelFrameworkModulePkg/Include/Guid/TianoDecompress.h b/IntelFrameworkModulePkg/Include/Guid/TianoDecompress.h
index e395cbc0ea..c59ae5f0b0 100644
--- a/IntelFrameworkModulePkg/Include/Guid/TianoDecompress.h
+++ b/IntelFrameworkModulePkg/Include/Guid/TianoDecompress.h
@@ -12,8 +12,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
-#ifndef __EFI_CUSTOM_DECOMPRESS_GUID_H__
-#define __EFI_CUSTOM_DECOMPRESS_GUID_H__
+#ifndef __TIANO_CUSTOM_DECOMPRESS_GUID_H__
+#define __TIANO_CUSTOM_DECOMPRESS_GUID_H__
#define TIANO_CUSTOM_DECOMPRESS_GUID \
{ 0xA31280AD, 0x481E, 0x41B6, { 0x95, 0xE8, 0x12, 0x7F, 0x4C, 0x98, 0x47, 0x79 } }
diff --git a/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h b/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
index 3439372853..d0a5de46bc 100644
--- a/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
+++ b/IntelFrameworkModulePkg/Include/Library/GenericBdsLib.h
@@ -551,9 +551,9 @@ DevicePathToStr (
// Internal definitions
//
typedef struct {
- CHAR16 *str;
- UINTN len;
- UINTN maxlen;
+ CHAR16 *Str;
+ UINTN Len;
+ UINTN Maxlen;
} POOL_PRINT;
typedef struct {
@@ -1045,7 +1045,7 @@ DevPathVendor (
The caller must free the resulting buffer.
@param Str Tracks the allocated pool, size in use, and amount of pool allocated.
- @param fmt The format string
+ @param Fmt The format string
@param ... The data will be printed.
@return Allocated buffer with the formatted string printed in it.
@@ -1057,7 +1057,7 @@ CHAR16 *
EFIAPI
CatPrint (
IN OUT POOL_PRINT *Str,
- IN CHAR16 *fmt,
+ IN CHAR16 *Fmt,
...
);