X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FCCode%2FSource%2FFlashMap%2FFlashDefFile.c;fp=Tools%2FCCode%2FSource%2FFlashMap%2FFlashDefFile.c;h=0bfdad2a0efc4b53a9b95603d9998c62d7f1b216;hp=cdbf7886ece5d34e145a9fb78486c41f67017e12;hb=112d8087acfe4fca5adb26ed692114e2f51cff26;hpb=877de74948a9601a6eb0e05c8421331ad34a17e0 diff --git a/Tools/CCode/Source/FlashMap/FlashDefFile.c b/Tools/CCode/Source/FlashMap/FlashDefFile.c index cdbf7886ec..0bfdad2a0e 100644 --- a/Tools/CCode/Source/FlashMap/FlashDefFile.c +++ b/Tools/CCode/Source/FlashMap/FlashDefFile.c @@ -1813,9 +1813,9 @@ Returns: fprintf (OutFptr, " \\\n"); fprintf (OutFptr, " /* %s.%s Subregion */\\\n", FBlock->Name, Subregion->Name); fprintf (OutFptr, " {\\\n"); - fprintf (OutFptr, " EFI_HOB_TYPE_GUID_EXTENSION,\\\n"); + fprintf (OutFptr, " {EFI_HOB_TYPE_GUID_EXTENSION,\\\n"); fprintf (OutFptr, " sizeof (EFI_HOB_FLASH_MAP_ENTRY_TYPE ),\\\n"); - fprintf (OutFptr, " 0,\\\n"); + fprintf (OutFptr, " 0},\\\n"); // // The NameGuid may have been specified in the input flash definition file as a GUID, or // as a quoted string. Do the right one. @@ -1825,7 +1825,7 @@ Returns: } else { fprintf ( OutFptr, - " { 0x%08X, 0x%04X, 0x%04X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X },\\\n", + " { 0x%08X, 0x%04X, 0x%04X, {0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X}},\\\n", Subregion->NameGuid.Data1, (unsigned int) Subregion->NameGuid.Data2, (unsigned int) Subregion->NameGuid.Data3, @@ -1840,7 +1840,7 @@ Returns: ); } - fprintf (OutFptr, " 0, 0, 0,\\\n"); + fprintf (OutFptr, " {0, 0, 0},\\\n"); fprintf (OutFptr, " %s,\\\n", Subregion->AreaType); // // The AreaTypeGuid may have been specified in the input flash definition file as a GUID, or @@ -1851,7 +1851,7 @@ Returns: } else { fprintf ( OutFptr, - " { 0x%08X, 0x%04X, 0x%04X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X },\\\n", + " { 0x%08X, 0x%04X, 0x%04X, {0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X}},\\\n", Subregion->AreaTypeGuid.Data1, (unsigned int) Subregion->AreaTypeGuid.Data2, (unsigned int) Subregion->AreaTypeGuid.Data3, @@ -1867,7 +1867,7 @@ Returns: } fprintf (OutFptr, " 1,\\\n"); - fprintf (OutFptr, " {\\\n"); + fprintf (OutFptr, " {{\\\n"); fprintf (OutFptr, " %s,\\\n", Subregion->Attributes); fprintf (OutFptr, " 0,\\\n"); fprintf (OutFptr, " FLASH_REGION_%s_SUBREGION_%s_BASE,\\\n", FBlock->Name, Subregion->Name); @@ -1881,7 +1881,7 @@ Returns: } else { fprintf ( OutFptr, - " { 0x%08X, 0x%04X, 0x%04X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X },\\\n", + " { 0x%08X, 0x%04X, 0x%04X, {0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X, 0x%02X}},\\\n", Subregion->FileSystemGuid.Data1, (unsigned int) Subregion->FileSystemGuid.Data2, (unsigned int) Subregion->FileSystemGuid.Data3, @@ -1896,7 +1896,7 @@ Returns: ); } - fprintf (OutFptr, " },\\\n"); + fprintf (OutFptr, " }},\\\n"); fprintf (OutFptr, " },"); } }