ArmPlatformPkg/NorFlashDxe: Fixed LBA for FVB

FVB (for instance for UEFI Variable) might not be at the
start of the NOR Flash. 'Lba' needs to be fixed up for it.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>



git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15532 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Olivier Martin
2014-05-14 22:11:04 +00:00
committed by oliviermartin
parent 7c794bf4a0
commit 36d66acf27
2 changed files with 5 additions and 6 deletions

View File

@@ -535,7 +535,7 @@ FvbWrite (
Instance = INSTANCE_FROM_FVB_THIS (This);
return NorFlashWriteSingleBlock (Instance, Lba, Offset, NumBytes, Buffer);
return NorFlashWriteSingleBlock (Instance, Instance->StartLba + Lba, Offset, NumBytes, Buffer);
}
/**