diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-05 00:42:52 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-05 00:42:52 +0000 |
commit | 689e9664b00a81b637d82e990096338a10c4b720 (patch) | |
tree | ca0f5763db9f85c7c8cb14243af1b3f7b01948f1 /src/xsvf/xsvf.c | |
parent | 473dc89c24f3c17c04dcafbf9b5c79d73a35ffe4 (diff) | |
download | openocd+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/xsvf/xsvf.c')
-rw-r--r-- | src/xsvf/xsvf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xsvf/xsvf.c b/src/xsvf/xsvf.c index f11ca677..4ede9fc9 100644 --- a/src/xsvf/xsvf.c +++ b/src/xsvf/xsvf.c @@ -232,7 +232,7 @@ static int handle_xsvf_command(struct command_context_s *cmd_ctx, char *cmd, cha if (strcmp(args[0], "plain") != 0) { - tap = jtag_TapByString( args[0] ); + tap = jtag_tap_by_string( args[0] ); if (!tap ) { command_print( cmd_ctx, "Tap: %s unknown", args[0] ); |