X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FInclude%2FProtocol%2FDevicePath.h;fp=MdePkg%2FInclude%2FProtocol%2FDevicePath.h;h=9a9ad2c08979c99a628f16139b867c20770f5c6a;hb=5c67fb2f4c61f8b42f9711b1660b29d91109636f;hp=631136be084f43f4f95e78c998b4390f5c1b5900;hpb=03e17578402a7b0dad5def719170429ad570a21f;p=mirror_edk2.git diff --git a/MdePkg/Include/Protocol/DevicePath.h b/MdePkg/Include/Protocol/DevicePath.h index 631136be08..9a9ad2c089 100644 --- a/MdePkg/Include/Protocol/DevicePath.h +++ b/MdePkg/Include/Protocol/DevicePath.h @@ -854,6 +854,15 @@ typedef struct { UINT8 SlotNumber; } SD_DEVICE_PATH; +/// +/// EMMC (Embedded MMC) Device Path SubType. +/// +#define MSG_EMMC_DP 0x1D +typedef struct { + EFI_DEVICE_PATH_PROTOCOL Header; + UINT8 SlotNumber; +} EMMC_DEVICE_PATH; + /// /// iSCSI Device Path SubType /// @@ -1239,6 +1248,7 @@ typedef union { WIFI_DEVICE_PATH WiFi; UFS_DEVICE_PATH Ufs; SD_DEVICE_PATH Sd; + EMMC_DEVICE_PATH Emmc; HARDDRIVE_DEVICE_PATH HardDrive; CDROM_DEVICE_PATH CD; @@ -1295,6 +1305,7 @@ typedef union { WIFI_DEVICE_PATH *WiFi; UFS_DEVICE_PATH *Ufs; SD_DEVICE_PATH *Sd; + EMMC_DEVICE_PATH *Emmc; HARDDRIVE_DEVICE_PATH *HardDrive; CDROM_DEVICE_PATH *CD;