1 /*++ 2 3 Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved 4 5 This program and the accompanying materials are licensed and made available under 6 the terms and conditions of the BSD License that accompanies this distribution. 7 The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php. 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 14 --*/ 15 16 17 /*++ 18 Module Name: 19 20 EmmcCardInfoProtocol.h 21 22 Abstract: 23 24 Interface definition for EFI_EMMC_CARD_INFO_PROTOCOL 25 26 --*/ 27 28 29 #ifndef _EMMC_CARD_INFO_H_ 30 #define _EMMC_CARD_INFO_H_ 31 32 #define EFI_EMMC_CARD_INFO_PROTOCOL_GUID \ 33 { \ 34 0x1ebe5ab9, 0x2129, 0x49e7, {0x84, 0xd7, 0xee, 0xb9, 0xfc, 0xe5, 0xde, 0xdd } \ 35 } 36 37 typedef struct _EFI_EMMC_CARD_INFO_PROTOCOL EFI_EMMC_CARD_INFO_PROTOCOL; 38 39 40 // 41 // EMMC Card info Structures 42 // 43 struct _EFI_EMMC_CARD_INFO_PROTOCOL { 44 CARD_DATA *CardData; 45 }; 46 47 extern EFI_GUID gEfiEmmcCardInfoProtocolGuid; 48 #endif 49