aboutsummaryrefslogtreecommitdiff
path: root/src/svf
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2020-07-12 00:38:12 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2020-07-26 20:15:20 +0100
commitd62b3c51df50e68e7f8f583f337538b1ea510d97 (patch)
tree92102c359f0ce14cd03fb4c63bdeb319e3fe4554 /src/svf
parent02ecd452c219a98b9da910b97755c5a326ab4cad (diff)
downloadriscv-openocd-d62b3c51df50e68e7f8f583f337538b1ea510d97.zip
riscv-openocd-d62b3c51df50e68e7f8f583f337538b1ea510d97.tar.gz
riscv-openocd-d62b3c51df50e68e7f8f583f337538b1ea510d97.tar.bz2
svf: fix minor typos
Change-Id: I40ac2d01c1feb2771ce96a26c4a4d05a1e816a61 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/5761 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
Diffstat (limited to 'src/svf')
-rw-r--r--src/svf/svf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/svf/svf.c b/src/svf/svf.c
index 81400c5..0105920 100644
--- a/src/svf/svf.c
+++ b/src/svf/svf.c
@@ -18,11 +18,11 @@
/* The specification for SVF is available here:
* http://www.asset-intertech.com/support/svf.pdf
- * Below, this document is refered to as the "SVF spec".
+ * Below, this document is referred to as the "SVF spec".
*
* The specification for XSVF is available here:
* http://www.xilinx.com/support/documentation/application_notes/xapp503.pdf
- * Below, this document is refered to as the "XSVF spec".
+ * Below, this document is referred to as the "XSVF spec".
*/
#ifdef HAVE_CONFIG_H
@@ -231,7 +231,7 @@ static int svf_quiet;
static int svf_nil;
static int svf_ignore_error;
-/* Targetting particular tap */
+/* Targeting particular tap */
static int svf_tap_is_specified;
static int svf_set_padding(struct svf_xxr_para *para, int len, unsigned char tdi);
@@ -854,7 +854,7 @@ static int svf_copy_hexstring_to_binary(char *str, uint8_t **bin, int orig_bit_l
/* check validity: we must have consumed everything */
if (str_len > 0 || (ch & ~((2 << ((bit_len - 1) % 4)) - 1)) != 0) {
- LOG_ERROR("value execeeds length");
+ LOG_ERROR("value exceeds length");
return ERROR_FAIL;
}
@@ -1078,7 +1078,7 @@ XXR_common:
pbuffer_tmp = &xxr_para_tmp->smask;
xxr_para_tmp->data_mask |= XXR_SMASK;
} else {
- LOG_ERROR("unknow parameter: %s", argus[i]);
+ LOG_ERROR("unknown parameter: %s", argus[i]);
return ERROR_FAIL;
}
if (ERROR_OK !=
@@ -1524,7 +1524,7 @@ XXR_common:
svf_para.trst_mode = i_tmp;
LOG_DEBUG("\ttrst_mode = %s", svf_trst_mode_name[svf_para.trst_mode]);
} else {
- LOG_ERROR("can not accpet TRST command if trst_mode is ABSENT");
+ LOG_ERROR("can not accept TRST command if trst_mode is ABSENT");
return ERROR_FAIL;
}
break;