]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Protocol/EmmcCardInfoProtocol.h
Vlv2DeviceRefCodePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Vlv2DeviceRefCodePkg / ValleyView2Soc / SouthCluster / Include / Protocol / EmmcCardInfoProtocol.h
1 /*++
2
3 Copyright (c) 2013 - 2014, Intel Corporation. All rights reserved
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
8 --*/
9
10
11 /*++
12 Module Name:
13
14 EmmcCardInfoProtocol.h
15
16 Abstract:
17
18 Interface definition for EFI_EMMC_CARD_INFO_PROTOCOL
19
20 --*/
21
22
23 #ifndef _EMMC_CARD_INFO_H_
24 #define _EMMC_CARD_INFO_H_
25
26 #define EFI_EMMC_CARD_INFO_PROTOCOL_GUID \
27 { \
28 0x1ebe5ab9, 0x2129, 0x49e7, {0x84, 0xd7, 0xee, 0xb9, 0xfc, 0xe5, 0xde, 0xdd } \
29 }
30
31 typedef struct _EFI_EMMC_CARD_INFO_PROTOCOL EFI_EMMC_CARD_INFO_PROTOCOL;
32
33
34 //
35 // EMMC Card info Structures
36 //
37 struct _EFI_EMMC_CARD_INFO_PROTOCOL {
38 CARD_DATA *CardData;
39 };
40
41 extern EFI_GUID gEfiEmmcCardInfoProtocolGuid;
42 #endif