Lines Matching refs:err
150 int err = -1; in arm_bl1_platform_setup() local
167 err = fconf_load_config(FW_CONFIG_ID); in arm_bl1_platform_setup()
168 if (err < 0) { in arm_bl1_platform_setup()
169 ERROR("Loading of FW_CONFIG failed %d\n", err); in arm_bl1_platform_setup()
170 plat_error_handler(err); in arm_bl1_platform_setup()
179 err = fconf_populate_dtb_registry(fw_config_info->config_addr); in arm_bl1_platform_setup()
180 if (err < 0) { in arm_bl1_platform_setup()
181 ERROR("Parsing of FW_CONFIG failed %d\n", err); in arm_bl1_platform_setup()
182 plat_error_handler(err); in arm_bl1_platform_setup()
185 err = fconf_load_config(TB_FW_CONFIG_ID); in arm_bl1_platform_setup()
186 if (err < 0) { in arm_bl1_platform_setup()
187 ERROR("Loading of TB_FW_CONFIG failed %d\n", err); in arm_bl1_platform_setup()
188 plat_error_handler(err); in arm_bl1_platform_setup()
192 plat_error_handler(err); in arm_bl1_platform_setup()