* The supplied FDTs expose the Interrupt Translation Service (ITS) available
in GICv3.
+* Fixed various GCC compiler warnings.
+
ARM Trusted Firmware - version 0.2
==================================
/* Data structure which holds the extents of the trusted SRAM for BL1*/
-static meminfo bl1_tzram_layout = {0};
+static meminfo bl1_tzram_layout;
meminfo bl1_get_sec_mem_layout(void)
{
/* Data structure which holds the extents of the trusted SRAM for BL2 */
static meminfo bl2_tzram_layout
__attribute__ ((aligned(PLATFORM_CACHE_LINE_SIZE),
- section("tzfw_coherent_mem"))) = {0};
+ section("tzfw_coherent_mem")));
/* Data structure which holds the extents of the non-trusted DRAM for BL2*/
-static meminfo dram_layout = {0};
+static meminfo dram_layout;
meminfo bl2_get_sec_mem_layout(void)
{
******************************************************************************/
el_change_info ns_entry_info[PLATFORM_CORE_COUNT]
__attribute__ ((aligned(PLATFORM_CACHE_LINE_SIZE),
- section("tzfw_coherent_mem"))) = {0};
+ section("tzfw_coherent_mem")));
/* Data structure which holds the extents of the trusted SRAM for BL31 */
static meminfo bl31_tzram_layout
__attribute__ ((aligned(PLATFORM_CACHE_LINE_SIZE),
- section("tzfw_coherent_mem"))) = {0};
+ section("tzfw_coherent_mem")));
meminfo bl31_get_sec_mem_layout(void)
{