Skip to content
Snippets Groups Projects
Commit ae86e921 authored by oharboe's avatar oharboe
Browse files

sharpen error propagation a wee bit.

git-svn-id: svn://svn.berlios.de/openocd/trunk@952 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent a3325f1d
No related branches found
No related tags found
No related merge requests found
...@@ -1389,6 +1389,7 @@ int arm11_init_target(struct command_context_s *cmd_ctx, struct target_s *target ...@@ -1389,6 +1389,7 @@ int arm11_init_target(struct command_context_s *cmd_ctx, struct target_s *target
int arm11_examine(struct target_s *target) int arm11_examine(struct target_s *target)
{ {
FNC_INFO; FNC_INFO;
int retval;
arm11_common_t * arm11 = target->arch_info; arm11_common_t * arm11 = target->arch_info;
...@@ -1415,7 +1416,8 @@ int arm11_examine(struct target_s *target) ...@@ -1415,7 +1416,8 @@ int arm11_examine(struct target_s *target)
arm11_add_dr_scan_vc(asizeof(chain0_fields), chain0_fields, TAP_RTI); arm11_add_dr_scan_vc(asizeof(chain0_fields), chain0_fields, TAP_RTI);
jtag_execute_queue(); if ((retval=jtag_execute_queue())!=ERROR_OK)
return retval;
switch (arm11->device_id & 0x0FFFF000) switch (arm11->device_id & 0x0FFFF000)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment