From 833e7f5248778bcb31b4db1a1b91160995415203 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 20 Nov 2009 11:26:35 -0800 Subject: use COMMAND_REGISTER macro Replaces direct calls to register_command() with a macro, to allow its parameters to be changed and callers updated in phases. --- src/jtag/parport.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/jtag/parport.c') diff --git a/src/jtag/parport.c b/src/jtag/parport.c index b80626f5..4b4df090 100644 --- a/src/jtag/parport.c +++ b/src/jtag/parport.c @@ -484,22 +484,22 @@ COMMAND_HANDLER(parport_handle_parport_toggling_time_command) static int parport_register_commands(struct command_context *cmd_ctx) { - register_command(cmd_ctx, NULL, "parport_port", + COMMAND_REGISTER(cmd_ctx, NULL, "parport_port", parport_handle_parport_port_command, COMMAND_CONFIG, "either the address of the I/O port " "or the number of the '/dev/parport' device"); - register_command(cmd_ctx, NULL, "parport_cable", + COMMAND_REGISTER(cmd_ctx, NULL, "parport_cable", parport_handle_parport_cable_command, COMMAND_CONFIG, "the layout of the parallel port cable " "used to connect to the target"); - register_command(cmd_ctx, NULL, "parport_write_on_exit", + COMMAND_REGISTER(cmd_ctx, NULL, "parport_write_on_exit", parport_handle_write_on_exit_command, COMMAND_CONFIG, "configure the parallel driver to write " "a known value to the parallel interface"); - register_command(cmd_ctx, NULL, "parport_toggling_time", + COMMAND_REGISTER(cmd_ctx, NULL, "parport_toggling_time", parport_handle_parport_toggling_time_command, COMMAND_ANY, "time it takes for the hardware to toggle TCK"); -- cgit v1.2.3