diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-05 00:43:12 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-05 00:43:12 +0000 |
commit | 7db58396082122071e1374cd2d4f3e435bdcdc49 (patch) | |
tree | 65cdc81e9a8737134188b8c9526066751ada8925 /src/target | |
parent | 689e9664b00a81b637d82e990096338a10c4b720 (diff) | |
download | openocd_libswd-7db58396082122071e1374cd2d4f3e435bdcdc49.tar.gz openocd_libswd-7db58396082122071e1374cd2d4f3e435bdcdc49.tar.bz2 openocd_libswd-7db58396082122071e1374cd2d4f3e435bdcdc49.tar.xz openocd_libswd-7db58396082122071e1374cd2d4f3e435bdcdc49.zip |
Eliminate MixedCaps symbol from public JTAG TAP API:
- Purely mechanical transformations to the source files.
- Rename 'jtag_TapByJimObj' as 'jtag_tap_by_jim_obj.'
git-svn-id: svn://svn.berlios.de/openocd/trunk@2066 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target')
-rw-r--r-- | src/target/target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/target.c b/src/target/target.c index e2e9d6f6..799faf8a 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -3450,7 +3450,7 @@ static int target_configure( Jim_GetOptInfo *goi, target_t *target ) if( e != JIM_OK ){ return e; } - tap = jtag_TapByJimObj( goi->interp, o ); + tap = jtag_tap_by_jim_obj( goi->interp, o ); if( tap == NULL ){ return JIM_ERR; } |