summaryrefslogtreecommitdiff
path: root/Tools/CCode/Source/GenFfsFile
diff options
context:
space:
mode:
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2006-12-07 11:32:26 +0000
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>2006-12-07 11:32:26 +0000
commit4afc6a7bf2e75801630c298a312a0ab552a1369f (patch)
tree22efaa56864d5964f50574118c54e2728a85a484 /Tools/CCode/Source/GenFfsFile
parent77206d75adb5b2f1763352e57e5211edb07a6101 (diff)
downloadedk2-platforms-4afc6a7bf2e75801630c298a312a0ab552a1369f.tar.xz
(1) Using EfiCompress in place of TianoCompress as EFI_STANDARD_COMPRESSION type to conform to spec.
(2) Remove unused library class EdkPeCoffLoaderX64Lib and library instance EdkPeCoffLoaderX64Lib, because current BasePeCoffLib can supports IA32, EBC, & X64 images all. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2069 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/CCode/Source/GenFfsFile')
-rw-r--r--Tools/CCode/Source/GenFfsFile/GenFfsFile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/CCode/Source/GenFfsFile/GenFfsFile.c b/Tools/CCode/Source/GenFfsFile/GenFfsFile.c
index 2ee7c444e6..d4e5468343 100644
--- a/Tools/CCode/Source/GenFfsFile/GenFfsFile.c
+++ b/Tools/CCode/Source/GenFfsFile/GenFfsFile.c
@@ -591,14 +591,14 @@ Returns:
// Added "Dummy" to keep backward compatibility.
//
CompressionType = EFI_STANDARD_COMPRESSION;
- CompressFunction = (COMPRESS_FUNCTION) TianoCompress;
+ CompressFunction = (COMPRESS_FUNCTION) EfiCompress;
} else if (strcmpi (Type, "LZH") == 0) {
//
// EFI stardard compression (LZH)
//
CompressionType = EFI_STANDARD_COMPRESSION;
- CompressFunction = (COMPRESS_FUNCTION) TianoCompress;
+ CompressFunction = (COMPRESS_FUNCTION) EfiCompress;
} else {
//