From: David Brownell Date: Wed, 24 Mar 2010 23:04:26 +0000 (-0700) Subject: FT2232 Messaaging fix X-Git-Tag: v0.5.0-rc1~801 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d7dba8d346bed622ab4269723d1d1c8992d3353b;p=openocd FT2232 Messaaging fix The init cleanup patch overlooked a message which was wrongly specific to the "usbjtag" layout. Fix. Signed-off-by: David Brownell --- diff --git a/src/jtag/drivers/ft2232.c b/src/jtag/drivers/ft2232.c index dd11aec6..93d1c4a8 100644 --- a/src/jtag/drivers/ft2232.c +++ b/src/jtag/drivers/ft2232.c @@ -2433,7 +2433,7 @@ static int ftx232_init_tail(void) if (((ft2232_write(buf, 3, &bytes_written)) != ERROR_OK) || (bytes_written != 3)) { - LOG_ERROR("couldn't initialize FT2232 with 'USBJTAG' layout"); + LOG_ERROR("couldn't initialize FT2232 DBUS"); return ERROR_JTAG_INIT_FAILED; }