diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2011-03-17 03:22:12 +0100 |
---|---|---|
committer | Øyvind Harboe <oyvind.harboe@zylin.com> | 2011-03-17 07:25:25 +0100 |
commit | 33a17fd35995a7f679f92600055a8f55ae380022 (patch) | |
tree | aeced6708919d4275600e4883e9566582e3c8d63 /src/svf | |
parent | 582b4195a99a21caa9522713fae659621137e0f9 (diff) | |
download | riscv-openocd-33a17fd35995a7f679f92600055a8f55ae380022.zip riscv-openocd-33a17fd35995a7f679f92600055a8f55ae380022.tar.gz riscv-openocd-33a17fd35995a7f679f92600055a8f55ae380022.tar.bz2 |
Fix a bunch of typos.
Fix a bunch of typos.
Most are in code comments, so nothing should break. UNKOWN_COMMAND and
CMD_UNKOWN are not used elsewhere, so correcting the spelling should
also not break anything.
Diffstat (limited to 'src/svf')
-rw-r--r-- | src/svf/svf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svf/svf.c b/src/svf/svf.c index 6acf032..0cca768 100644 --- a/src/svf/svf.c +++ b/src/svf/svf.c @@ -402,7 +402,7 @@ COMMAND_HANDLER(handle_svf_command) svf_buffer_index = 0; // double the buffer size - // in case current command cannot be commited, and next command is a bit scan command + // in case current command cannot be committed, and next command is a bit scan command // here is 32K bits for this big scan command, it should be enough // buffer will be reallocated if buffer size is not enough svf_tdi_buffer = (uint8_t *)malloc(2 * SVF_MAX_BUFFER_SIZE_TO_COMMIT); |