summaryrefslogtreecommitdiff
path: root/src/target/etm_dummy.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-23 08:24:02 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-24 21:37:36 -0800
commitf74e2e033a2ad082e5bef67d0ddedd1db3f58300 (patch)
tree8f0e521332a6685085a38cd70660bf8f308060a4 /src/target/etm_dummy.c
parent66ee303456910f684244a20a0ac2e958d40b78cb (diff)
downloadopenocd+libswd-f74e2e033a2ad082e5bef67d0ddedd1db3f58300.tar.gz
openocd+libswd-f74e2e033a2ad082e5bef67d0ddedd1db3f58300.tar.bz2
openocd+libswd-f74e2e033a2ad082e5bef67d0ddedd1db3f58300.tar.xz
openocd+libswd-f74e2e033a2ad082e5bef67d0ddedd1db3f58300.zip
remove register_commands from etm_capture_driver
Converts callback to an array of command_registration records. Moves oocd_trace driver definition to end of file to eliminate useless forward declaration.
Diffstat (limited to 'src/target/etm_dummy.c')
-rw-r--r--src/target/etm_dummy.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/target/etm_dummy.c b/src/target/etm_dummy.c
index 27a8eec1..647774f2 100644
--- a/src/target/etm_dummy.c
+++ b/src/target/etm_dummy.c
@@ -77,11 +77,6 @@ static const struct command_registration etm_dummy_command_handlers[] = {
COMMAND_REGISTRATION_DONE
};
-static int etm_dummy_register_commands(struct command_context *cmd_ctx)
-{
- return register_commands(cmd_ctx, NULL, etm_dummy_command_handlers);
-}
-
static int etm_dummy_init(struct etm_context *etm_ctx)
{
return ERROR_OK;
@@ -110,7 +105,7 @@ static int etm_dummy_stop_capture(struct etm_context *etm_ctx)
struct etm_capture_driver etm_dummy_capture_driver =
{
.name = "dummy",
- .register_commands = etm_dummy_register_commands,
+ .commands = etm_dummy_command_handlers,
.init = etm_dummy_init,
.status = etm_dummy_status,
.start_capture = etm_dummy_start_capture,