summaryrefslogtreecommitdiff
path: root/src/pld
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-05 00:42:52 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-06-05 00:42:52 +0000
commit689e9664b00a81b637d82e990096338a10c4b720 (patch)
treeca0f5763db9f85c7c8cb14243af1b3f7b01948f1 /src/pld
parent473dc89c24f3c17c04dcafbf9b5c79d73a35ffe4 (diff)
downloadopenocd+libswd-689e9664b00a81b637d82e990096338a10c4b720.tar.gz
openocd+libswd-689e9664b00a81b637d82e990096338a10c4b720.tar.bz2
openocd+libswd-689e9664b00a81b637d82e990096338a10c4b720.tar.xz
openocd+libswd-689e9664b00a81b637d82e990096338a10c4b720.zip
Eliminate MixedCaps symbol from public JTAG TAP API:
- Purely mechanical transformations to the source files. - Rename 'jtag_TapByString' as 'jtag_tap_by_string.' git-svn-id: svn://svn.berlios.de/openocd/trunk@2065 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/pld')
-rw-r--r--src/pld/virtex2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pld/virtex2.c b/src/pld/virtex2.c
index f8e13df6..821699ac 100644
--- a/src/pld/virtex2.c
+++ b/src/pld/virtex2.c
@@ -247,7 +247,7 @@ int virtex2_pld_device_command(struct command_context_s *cmd_ctx, char *cmd, cha
return ERROR_PLD_DEVICE_INVALID;
}
- tap = jtag_TapByString( args[1] );
+ tap = jtag_tap_by_string( args[1] );
if( tap == NULL ){
command_print( cmd_ctx, "Tap: %s does not exist", args[1] );
return ERROR_OK;