diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 05:51:03 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:05 -0800 |
commit | e11c5a3b42a2a39c5b24c9a19ba03f7b16caf3d7 (patch) | |
tree | 622c543e8f0a8c2b833647f620116f0b44e35123 | |
parent | 2ddeec9db5a8771c948294b7194778a95295b7a0 (diff) | |
download | riscv-openocd-e11c5a3b42a2a39c5b24c9a19ba03f7b16caf3d7.zip riscv-openocd-e11c5a3b42a2a39c5b24c9a19ba03f7b16caf3d7.tar.gz riscv-openocd-e11c5a3b42a2a39c5b24c9a19ba03f7b16caf3d7.tar.bz2 |
cmd_queue_page_t -> struct cmd_queue_page
Remove misleading typedef from struct cmd_queue_page.
-rw-r--r-- | src/jtag/commands.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/jtag/commands.c b/src/jtag/commands.c index 64bb993..c092eec 100644 --- a/src/jtag/commands.c +++ b/src/jtag/commands.c @@ -33,15 +33,14 @@ #include "commands.h" -typedef struct cmd_queue_page_s -{ +struct cmd_queue_page { void *address; size_t used; - struct cmd_queue_page_s *next; -} cmd_queue_page_t; + struct cmd_queue_page *next; +}; #define CMD_QUEUE_PAGE_SIZE (1024 * 1024) -static cmd_queue_page_t *cmd_queue_pages = NULL; +static struct cmd_queue_page *cmd_queue_pages = NULL; jtag_command_t *jtag_command_queue = NULL; static jtag_command_t **next_command_pointer = &jtag_command_queue; @@ -62,7 +61,7 @@ void jtag_queue_command(jtag_command_t * cmd) void* cmd_queue_alloc(size_t size) { - cmd_queue_page_t **p_page = &cmd_queue_pages; + struct cmd_queue_page **p_page = &cmd_queue_pages; int offset; uint8_t *t; @@ -108,7 +107,7 @@ void* cmd_queue_alloc(size_t size) if (!*p_page) { - *p_page = malloc(sizeof(cmd_queue_page_t)); + *p_page = malloc(sizeof(struct cmd_queue_page)); (*p_page)->used = 0; (*p_page)->address = malloc(CMD_QUEUE_PAGE_SIZE); (*p_page)->next = NULL; @@ -123,11 +122,11 @@ void* cmd_queue_alloc(size_t size) void cmd_queue_free(void) { - cmd_queue_page_t *page = cmd_queue_pages; + struct cmd_queue_page *page = cmd_queue_pages; while (page) { - cmd_queue_page_t *last = page; + struct cmd_queue_page *last = page; free(page->address); page = page->next; free(last); |