Lines Matching refs:err
152 int err = -1; in arm_bl1_platform_setup() local
169 err = fconf_load_config(FW_CONFIG_ID); in arm_bl1_platform_setup()
170 if (err < 0) { in arm_bl1_platform_setup()
171 ERROR("Loading of FW_CONFIG failed %d\n", err); in arm_bl1_platform_setup()
172 plat_error_handler(err); in arm_bl1_platform_setup()
181 err = fconf_populate_dtb_registry(fw_config_info->config_addr); in arm_bl1_platform_setup()
182 if (err < 0) { in arm_bl1_platform_setup()
183 ERROR("Parsing of FW_CONFIG failed %d\n", err); in arm_bl1_platform_setup()
184 plat_error_handler(err); in arm_bl1_platform_setup()
187 err = fconf_load_config(TB_FW_CONFIG_ID); in arm_bl1_platform_setup()
188 if (err < 0) { in arm_bl1_platform_setup()
189 ERROR("Loading of TB_FW_CONFIG failed %d\n", err); in arm_bl1_platform_setup()
190 plat_error_handler(err); in arm_bl1_platform_setup()
194 plat_error_handler(err); in arm_bl1_platform_setup()