summaryrefslogtreecommitdiff
path: root/src/jtag
diff options
context:
space:
mode:
authormifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-12-09 15:36:21 +0000
committermifi <mifi@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-12-09 15:36:21 +0000
commit9e6cec0dd3301395345777cfe2617559a868f2a9 (patch)
treece46406a1db239d40950df5a2fd071a554711fbd /src/jtag
parent00bbf24c1605e10e662f920c9b0a6ab02e6b81ee (diff)
downloadopenocd+libswd-9e6cec0dd3301395345777cfe2617559a868f2a9.tar.gz
openocd+libswd-9e6cec0dd3301395345777cfe2617559a868f2a9.tar.bz2
openocd+libswd-9e6cec0dd3301395345777cfe2617559a868f2a9.tar.xz
openocd+libswd-9e6cec0dd3301395345777cfe2617559a868f2a9.zip
- added patch to display device information as INFO too
- added patch which fixes a crash upon flash write error - added patch which will improve the reset handling when SRST is tied to TRST (thanks to Oyvind Harboe for these patches) git-svn-id: svn://svn.berlios.de/openocd/trunk@218 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/jtag')
-rw-r--r--src/jtag/jtag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/jtag.c b/src/jtag/jtag.c
index 5a390070..09cffef7 100644
--- a/src/jtag/jtag.c
+++ b/src/jtag/jtag.c
@@ -1287,7 +1287,7 @@ int jtag_examine_chain()
part = (idcode & 0xffff000) >> 12;
version = (idcode & 0xf0000000) >> 28;
- DEBUG("JTAG device found: 0x%8.8x (Manufacturer: 0x%3.3x, Part: 0x%4.4x, Version: 0x%1.1x",
+ INFO("JTAG device found: 0x%8.8x (Manufacturer: 0x%3.3x, Part: 0x%4.4x, Version: 0x%1.1x)",
idcode, manufacturer, part, version);
bit_count += 32;