mirror of https://github.com/acidanthera/audk.git
Omap35xxPkg/MMCHSDxe: fix device path initializer
Fix the braces in a static device path template definition. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
This commit is contained in:
parent
4f1de41587
commit
4211614d80
|
@ -43,11 +43,15 @@ typedef struct {
|
||||||
|
|
||||||
MMCHS_DEVICE_PATH gMmcHsDevicePath = {
|
MMCHS_DEVICE_PATH gMmcHsDevicePath = {
|
||||||
{
|
{
|
||||||
HARDWARE_DEVICE_PATH,
|
{
|
||||||
HW_VENDOR_DP,
|
HARDWARE_DEVICE_PATH,
|
||||||
(UINT8)(sizeof(VENDOR_DEVICE_PATH)),
|
HW_VENDOR_DP,
|
||||||
(UINT8)((sizeof(VENDOR_DEVICE_PATH)) >> 8),
|
{
|
||||||
0xb615f1f5, 0x5088, 0x43cd, 0x80, 0x9c, 0xa1, 0x6e, 0x52, 0x48, 0x7d, 0x00
|
(UINT8)(sizeof(VENDOR_DEVICE_PATH)),
|
||||||
|
(UINT8)((sizeof(VENDOR_DEVICE_PATH)) >> 8),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{ 0xb615f1f5, 0x5088, 0x43cd, { 0x80, 0x9c, 0xa1, 0x6e, 0x52, 0x48, 0x7d, 0x00 } },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
END_DEVICE_PATH_TYPE,
|
END_DEVICE_PATH_TYPE,
|
||||||
|
|
Loading…
Reference in New Issue