aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamal Dasu <kdasu.kdev@gmail.com>2012-10-17 12:12:42 -0400
committerFreddie Chopin <freddie.chopin@gmail.com>2012-12-09 21:27:47 +0000
commit65659880641f2b08e824c3cd20f2304d78cbfdbf (patch)
treed00cb8d0417fe530f8454d40c82c8eef5d6dd5ec
parent27ad96e0d955a43a6f94b4afaa5738e69c52aa24 (diff)
mips_ejtag: Adding EJTAG 4.x and 5.x as valid versions
This is a minor change to log EJTAG version 4.x and 5.x as valid versions when debug log is enabled. Change-Id: Ie20458d033c6d22842cb4a31b56765d4ba2ff123 Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com> Reviewed-on: http://openocd.zylin.com/936 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
-rw-r--r--src/target/mips_ejtag.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/target/mips_ejtag.c b/src/target/mips_ejtag.c
index bd7ae14d..286fa327 100644
--- a/src/target/mips_ejtag.c
+++ b/src/target/mips_ejtag.c
@@ -274,6 +274,12 @@ int mips_ejtag_init(struct mips_ejtag *ejtag_info)
case 3:
LOG_DEBUG("EJTAG: Version 3.1 Detected");
break;
+ case 4:
+ LOG_DEBUG("EJTAG: Version 4.1 Detected");
+ break;
+ case 5:
+ LOG_DEBUG("EJTAG: Version 5.1 Detected");
+ break;
default:
LOG_DEBUG("EJTAG: Unknown Version Detected");
break;