aboutsummaryrefslogtreecommitdiff
path: root/src/target/mips_ejtag.c
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2021-04-27 18:50:34 +0200
committerAntonio Borneo <borneo.antonio@gmail.com>2021-07-20 14:53:03 +0100
commitcbaccc5c3eff817faf59693f653b3a2da063c818 (patch)
tree762e9caa89b4b99def65c6e1b6540e0fa948dde0 /src/target/mips_ejtag.c
parent12d6f6d80431a7660cbf88838efae66fbf583413 (diff)
downloadriscv-openocd-cbaccc5c3eff817faf59693f653b3a2da063c818.zip
riscv-openocd-cbaccc5c3eff817faf59693f653b3a2da063c818.tar.gz
riscv-openocd-cbaccc5c3eff817faf59693f653b3a2da063c818.tar.bz2
target/mips: rename CamelCase symbols
No major cross dependencies, mostly changes internal to each file/function. Change-Id: Iec58f7fe1d65f621ae0c841b5e25ef222885792b Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: http://openocd.zylin.com/6341 Tested-by: jenkins Reviewed-by: Marc Schink <dev@zapb.de> Reviewed-by: Xiang W <wxjstz@126.com>
Diffstat (limited to 'src/target/mips_ejtag.c')
-rw-r--r--src/target/mips_ejtag.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/mips_ejtag.c b/src/target/mips_ejtag.c
index d4c019f..09af855 100644
--- a/src/target/mips_ejtag.c
+++ b/src/target/mips_ejtag.c
@@ -296,8 +296,8 @@ static void mips_ejtag_init_mmr(struct mips_ejtag *ejtag_info)
ejtag_info->ejtag_dbm_offs = EJTAG_V20_DBM_OFFS;
ejtag_info->ejtag_dbv_offs = EJTAG_V20_DBV_OFFS;
- ejtag_info->ejtag_iba_step_size = EJTAG_V20_IBAn_STEP;
- ejtag_info->ejtag_dba_step_size = EJTAG_V20_DBAn_STEP;
+ ejtag_info->ejtag_iba_step_size = EJTAG_V20_IBAN_STEP;
+ ejtag_info->ejtag_dba_step_size = EJTAG_V20_DBAN_STEP;
} else {
ejtag_info->ejtag_ibs_addr = EJTAG_V25_IBS;
ejtag_info->ejtag_iba0_addr = EJTAG_V25_IBA0;
@@ -312,8 +312,8 @@ static void mips_ejtag_init_mmr(struct mips_ejtag *ejtag_info)
ejtag_info->ejtag_dbc_offs = EJTAG_V25_DBC_OFFS;
ejtag_info->ejtag_dbv_offs = EJTAG_V25_DBV_OFFS;
- ejtag_info->ejtag_iba_step_size = EJTAG_V25_IBAn_STEP;
- ejtag_info->ejtag_dba_step_size = EJTAG_V25_DBAn_STEP;
+ ejtag_info->ejtag_iba_step_size = EJTAG_V25_IBAN_STEP;
+ ejtag_info->ejtag_dba_step_size = EJTAG_V25_DBAN_STEP;
}
}