summaryrefslogtreecommitdiff
path: root/src/pld/virtex2.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-23 09:30:02 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-24 21:37:33 -0800
commite2f23c54373097098ef0b59377299d7382f4c58a (patch)
tree11fdbb5ec4a4daf6ea9c1f9fb32cd258480d3062 /src/pld/virtex2.c
parent76b89755c994faa8ff0f646c722373ccb876f744 (diff)
downloadopenocd_libswd-e2f23c54373097098ef0b59377299d7382f4c58a.tar.gz
openocd_libswd-e2f23c54373097098ef0b59377299d7382f4c58a.tar.bz2
openocd_libswd-e2f23c54373097098ef0b59377299d7382f4c58a.tar.xz
openocd_libswd-e2f23c54373097098ef0b59377299d7382f4c58a.zip
pld: use static registration instead of callback
Remove register_callbacks from pld_device structure, using an array of command_registration records instead.
Diffstat (limited to 'src/pld/virtex2.c')
-rw-r--r--src/pld/virtex2.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/pld/virtex2.c b/src/pld/virtex2.c
index 1025e61c..77eb8669 100644
--- a/src/pld/virtex2.c
+++ b/src/pld/virtex2.c
@@ -253,14 +253,9 @@ static const struct command_registration virtex2_command_handler[] = {
COMMAND_REGISTRATION_DONE
};
-static int virtex2_register_commands(struct command_context *cmd_ctx)
-{
- return register_commands(cmd_ctx, NULL, virtex2_command_handler);
-}
-
struct pld_driver virtex2_pld = {
.name = "virtex2",
- .register_commands = &virtex2_register_commands,
+ .commands = virtex2_command_handler,
.pld_device_command = &virtex2_pld_device_command,
.load = &virtex2_load,
};