mirror of https://github.com/acidanthera/audk.git
EmbeddedPkg/Mmc: Fixed ARMGCC build
Fixed the build error: Redefinition of typedef 'EFI_MMC_HOST_PROTOCOL' git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12291 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
1f58a5dcd4
commit
6b062a863f
|
@ -128,7 +128,7 @@ typedef EFI_STATUS (EFIAPI *MMC_WRITEBLOCKDATA) (
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
typedef struct _EFI_MMC_HOST_PROTOCOL {
|
struct _EFI_MMC_HOST_PROTOCOL {
|
||||||
|
|
||||||
UINT32 Revision;
|
UINT32 Revision;
|
||||||
MMC_ISCARDPRESENT IsCardPresent;
|
MMC_ISCARDPRESENT IsCardPresent;
|
||||||
|
@ -143,7 +143,7 @@ typedef struct _EFI_MMC_HOST_PROTOCOL {
|
||||||
MMC_READBLOCKDATA ReadBlockData;
|
MMC_READBLOCKDATA ReadBlockData;
|
||||||
MMC_WRITEBLOCKDATA WriteBlockData;
|
MMC_WRITEBLOCKDATA WriteBlockData;
|
||||||
|
|
||||||
} EFI_MMC_HOST_PROTOCOL;
|
};
|
||||||
|
|
||||||
#define MMC_HOST_PROTOCOL_REVISION 0x00010001 // 1.1
|
#define MMC_HOST_PROTOCOL_REVISION 0x00010001 // 1.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue