EFI_FVB2_ALIGNMNET_512K should be EFI_FVB2_ALIGNMENT_512K.

Signed-off-by: lzeng14
Reviewed-by: lgao4

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12711 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lzeng14 2011-11-15 11:06:36 +00:00
parent 6f583626a1
commit 5d9f5dc1a0
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
/*++ /*++
Copyright (c) 2004 - 2007, Intel Corporation. All rights reserved.<BR> Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
@ -106,7 +106,7 @@ typedef UINT32 EFI_FVB_ATTRIBUTES;
#define EFI_FVB2_ALIGNMENT_64K 0x00100000 #define EFI_FVB2_ALIGNMENT_64K 0x00100000
#define EFI_FVB2_ALIGNMENT_128K 0x00110000 #define EFI_FVB2_ALIGNMENT_128K 0x00110000
#define EFI_FVB2_ALIGNMENT_256K 0x00120000 #define EFI_FVB2_ALIGNMENT_256K 0x00120000
#define EFI_FVB2_ALIGNMNET_512K 0x00130000 #define EFI_FVB2_ALIGNMENT_512K 0x00130000
#define EFI_FVB2_ALIGNMENT_1M 0x00140000 #define EFI_FVB2_ALIGNMENT_1M 0x00140000
#define EFI_FVB2_ALIGNMENT_2M 0x00150000 #define EFI_FVB2_ALIGNMENT_2M 0x00150000
#define EFI_FVB2_ALIGNMENT_4M 0x00160000 #define EFI_FVB2_ALIGNMENT_4M 0x00160000

View File

@ -1,6 +1,6 @@
/*++ /*++
Copyright (c) 2004 - 2010, Intel Corporation. All rights reserved.<BR> Copyright (c) 2004 - 2011, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
@ -923,7 +923,7 @@ Returns:
} else if (strcmp (Value, EFI_FVB2_ALIGNMENT_256K_STRING) == 0) { } else if (strcmp (Value, EFI_FVB2_ALIGNMENT_256K_STRING) == 0) {
FvInfo->FvAttributes |= EFI_FVB2_ALIGNMENT_256K; FvInfo->FvAttributes |= EFI_FVB2_ALIGNMENT_256K;
} else if (strcmp (Value, EFI_FVB2_ALIGNMENT_512K_STRING) == 0) { } else if (strcmp (Value, EFI_FVB2_ALIGNMENT_512K_STRING) == 0) {
FvInfo->FvAttributes |= EFI_FVB2_ALIGNMNET_512K; FvInfo->FvAttributes |= EFI_FVB2_ALIGNMENT_512K;
} else if (strcmp (Value, EFI_FVB2_ALIGNMENT_1M_STRING) == 0) { } else if (strcmp (Value, EFI_FVB2_ALIGNMENT_1M_STRING) == 0) {
FvInfo->FvAttributes |= EFI_FVB2_ALIGNMENT_1M; FvInfo->FvAttributes |= EFI_FVB2_ALIGNMENT_1M;
} else if (strcmp (Value, EFI_FVB2_ALIGNMENT_2M_STRING) == 0) { } else if (strcmp (Value, EFI_FVB2_ALIGNMENT_2M_STRING) == 0) {