diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-03-06 14:19:29 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-03-06 14:19:29 +0000 |
commit | 301f47ddb5cd936aa465fdf95b6d8ca8f170050e (patch) | |
tree | bba02bc57c4c735490dc66d829ec17fb7eb1cd9d | |
parent | 6be6ba715144a316c810698def4a7cd3e9280c8d (diff) | |
download | openocd+libswd-301f47ddb5cd936aa465fdf95b6d8ca8f170050e.tar.gz openocd+libswd-301f47ddb5cd936aa465fdf95b6d8ca8f170050e.tar.bz2 openocd+libswd-301f47ddb5cd936aa465fdf95b6d8ca8f170050e.tar.xz openocd+libswd-301f47ddb5cd936aa465fdf95b6d8ca8f170050e.zip |
tms is never referenced, confusing old code left behind probably.
git-svn-id: svn://svn.berlios.de/openocd/trunk@456 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | src/jtag/bitbang.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/jtag/bitbang.c b/src/jtag/bitbang.c index 19afdbf0..b5ea8fe2 100644 --- a/src/jtag/bitbang.c +++ b/src/jtag/bitbang.c @@ -145,16 +145,6 @@ void bitbang_scan(int ir_scan, enum scan_type type, u8 *buffer, int scan_size) for (bit_cnt = 0; bit_cnt < scan_size; bit_cnt++) { - /* set TMS high on the last bit unless we want to end in TAP_SD/SI */ - int tms; - if ((ir_scan && (end_state == TAP_SI)) || - (!ir_scan && (end_state == TAP_SD))) - { - tms = 0; - } else { - tms = (bit_cnt==scan_size-1) ? 1 : 0; - } - /* if we're just reading the scan, but don't care about the output * default to outputting 'low', this also makes valgrind traces more readable, * as it removes the dependency on an uninitialised value |