diff options
author | Ryan Macdonald <rmac@sifive.com> | 2018-08-31 14:30:17 -0700 |
---|---|---|
committer | Ryan Macdonald <rmac@sifive.com> | 2018-08-31 14:30:17 -0700 |
commit | 631f6cd55b6b7a34b194c8d51c573ec60926ff56 (patch) | |
tree | 9b5479a77bafa2f3102dc1ef23a3152b191a5905 | |
parent | 3516fd50197acaeff8e933d0e67028b6582c1cb5 (diff) | |
download | riscv-openocd-631f6cd55b6b7a34b194c8d51c573ec60926ff56.zip riscv-openocd-631f6cd55b6b7a34b194c8d51c573ec60926ff56.tar.gz riscv-openocd-631f6cd55b6b7a34b194c8d51c573ec60926ff56.tar.bz2 |
More style fixes
Signed-off-by: Ryan Macdonald <rmac@sifive.com>
-rw-r--r-- | src/target/riscv/riscv-013.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/riscv/riscv-013.c b/src/target/riscv/riscv-013.c index c1cae62..34ec3c6 100644 --- a/src/target/riscv/riscv-013.c +++ b/src/target/riscv/riscv-013.c @@ -3009,7 +3009,7 @@ static int riscv013_test_sba_config_reg(struct target *target, if (get_field(sbcs, DMI_SBCS_SBVERSION) != 1) { LOG_ERROR("System Bus Access unsupported SBVERSION (%d). Only version 1 is supported.", - get_field(sbcs, DMI_SBCS_SBVERSION)); + get_field(sbcs, DMI_SBCS_SBVERSION)); return ERROR_FAIL; } |