Make those fences less loud

This commit is contained in:
Palmer Dabbelt 2018-05-31 00:22:36 -07:00
parent 99eb9ac0f2
commit 05190fabd8
1 changed files with 2 additions and 2 deletions

View File

@ -1729,7 +1729,7 @@ static int execute_fence(struct target *target)
riscv_program_fence(&program); riscv_program_fence(&program);
int result = riscv_program_exec(&program, target); int result = riscv_program_exec(&program, target);
if (result != ERROR_OK) if (result != ERROR_OK)
LOG_ERROR("Unable to execute pre-fence"); LOG_DEBUG("Unable to execute pre-fence");
} }
for (int i = 0; i < riscv_count_harts(target); ++i) { for (int i = 0; i < riscv_count_harts(target); ++i) {
@ -1744,7 +1744,7 @@ static int execute_fence(struct target *target)
riscv_program_fence(&program); riscv_program_fence(&program);
int result = riscv_program_exec(&program, target); int result = riscv_program_exec(&program, target);
if (result != ERROR_OK) if (result != ERROR_OK)
LOG_ERROR("Unable to execute fence on hart %d", i); LOG_DEBUG("Unable to execute fence on hart %d", i);
} }
riscv_set_current_hartid(target, old_hartid); riscv_set_current_hartid(target, old_hartid);