summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-08-19 08:39:06 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-08-19 08:39:06 +0000
commitc2f593bdc1dd683fdd11800e40e9f71f5729c6ba (patch)
tree5a7736bf0d8fa9c21c86e71e8598a70fe026f9ff /src
parent18d8ac5267a41d29417ea01213be5dc9c2bddf9c (diff)
downloadopenocd+libswd-c2f593bdc1dd683fdd11800e40e9f71f5729c6ba.tar.gz
openocd+libswd-c2f593bdc1dd683fdd11800e40e9f71f5729c6ba.tar.bz2
openocd+libswd-c2f593bdc1dd683fdd11800e40e9f71f5729c6ba.tar.xz
openocd+libswd-c2f593bdc1dd683fdd11800e40e9f71f5729c6ba.zip
Jonas Horberg [jhorberg@sauer-danfoss.com]:
Fix small typo in ftd2xx type detection git-svn-id: svn://svn.berlios.de/openocd/trunk@2597 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src')
-rw-r--r--src/jtag/ft2232.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/ft2232.c b/src/jtag/ft2232.c
index 0806c90a..1ae2f662 100644
--- a/src/jtag/ft2232.c
+++ b/src/jtag/ft2232.c
@@ -1940,7 +1940,7 @@ static int ft2232_init_ftd2xx(uint16_t vid, uint16_t pid, int more, int* try_mor
static const char* type_str[] =
{"BM", "AM", "100AX", "UNKNOWN", "2232C", "232R", "2232H", "4232H"};
unsigned no_of_known_types = sizeof(type_str) / sizeof(type_str[0]) - 1;
- unsigned type_index = ((unsigned)ftdi_device < no_of_known_types)
+ unsigned type_index = ((unsigned)ftdi_device <= no_of_known_types)
? ftdi_device : 3;
LOG_INFO("device: %lu \"%s\"", ftdi_device, type_str[type_index]);
LOG_INFO("deviceID: %lu", deviceID);