Nicolas Pitre fixed regression.
git-svn-id: svn://svn.berlios.de/openocd/trunk@590 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
dd5bc1f893
commit
4b19617f33
|
@ -639,15 +639,14 @@ int feroceon_target_command(struct command_context_s *cmd_ctx, char *cmd, char *
|
|||
|
||||
int feroceon_examine(struct command_context_s *cmd_ctx, struct target_s *target)
|
||||
{
|
||||
armv4_5_common_t *armv4_5;
|
||||
arm7_9_common_t *arm7_9;
|
||||
int retval;
|
||||
|
||||
retval=feroceon_examine(cmd_ctx, target);
|
||||
retval = arm9tdmi_examine(cmd_ctx, target);
|
||||
if (retval!=ERROR_OK)
|
||||
return retval;
|
||||
|
||||
armv4_5_common_t *armv4_5;
|
||||
arm7_9_common_t *arm7_9;
|
||||
|
||||
armv4_5 = target->arch_info;
|
||||
arm7_9 = armv4_5->arch_info;
|
||||
|
||||
|
|
Loading…
Reference in New Issue