From: David Brownell Date: Mon, 16 Nov 2009 23:18:55 +0000 (-0800) Subject: JTAG: no LOG_WARNING() for taps without IDCODE X-Git-Tag: v0.4.0-rc1~562 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=a7c04a0e49bf436e7930d798732c0827c38135b8;ds=sidebyside JTAG: no LOG_WARNING() for taps without IDCODE Signed-off-by: David Brownell --- diff --git a/src/jtag/core.c b/src/jtag/core.c index ea723ebe13..da745d09a2 100644 --- a/src/jtag/core.c +++ b/src/jtag/core.c @@ -1064,7 +1064,7 @@ static int jtag_examine_chain(void) if ((idcode & 1) == 0) { /* Zero for LSB indicates a device in bypass */ - LOG_WARNING("TAP %s does not have IDCODE", + LOG_INFO("TAP %s does not have IDCODE", tap->dotted_name); idcode = 0; tap->hasidcode = false;