diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2018-11-21 12:58:28 +0100 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2018-11-27 12:54:13 +0100 |
commit | 13d5d0a56e486be39f95c5e0883e64698ed02714 (patch) | |
tree | e1303f259bb281c79913b7e43f67eca3cac38ced /ArmPlatformPkg/Include | |
parent | 534efca06f029433f07edc49e68d9c474902648d (diff) | |
download | edk2-13d5d0a56e486be39f95c5e0883e64698ed02714.tar.gz edk2-13d5d0a56e486be39f95c5e0883e64698ed02714.tar.bz2 edk2-13d5d0a56e486be39f95c5e0883e64698ed02714.zip |
ArmPlatformPkg/NorFlashPlatformLib: remove unused Guid member from struct
We no longer use per-instance GUIDs to identify NOR flash banks so
there is no longer a need to define them. Drop the Guid member from
the NOR_FLASH_DESCRIPTION type.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Tested-by: Thomas Abraham <thomas.abraham@arm.com>
Diffstat (limited to 'ArmPlatformPkg/Include')
-rw-r--r-- | ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h b/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h index e9e1c06078..e99a217c3a 100644 --- a/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h +++ b/ArmPlatformPkg/Include/Library/NorFlashPlatformLib.h @@ -20,7 +20,6 @@ typedef struct { UINTN RegionBaseAddress; // Start address of one single region
UINTN Size;
UINTN BlockSize;
- EFI_GUID Guid;
} NOR_FLASH_DESCRIPTION;
EFI_STATUS
|