summaryrefslogtreecommitdiff
path: root/src/pld/pld.h
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/pld.h
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/pld.h')
-rw-r--r--src/pld/pld.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pld/pld.h b/src/pld/pld.h
index b183e3e0..1ae775cc 100644
--- a/src/pld/pld.h
+++ b/src/pld/pld.h
@@ -31,7 +31,7 @@ struct pld_driver
{
char *name;
__PLD_DEVICE_COMMAND((*pld_device_command));
- int (*register_commands)(struct command_context *cmd_ctx);
+ const struct command_registration *commands;
int (*load)(struct pld_device *pld_device, const char *filename);
};