Merge pull request #1072 from aap-sc/aap-sc/fix_warnings_on_hide_csrs
target/riscv: do not emit warnings when a non-existent CSR is hidden
This commit is contained in:
commit
347981ca55
|
@ -6885,7 +6885,7 @@ static void hide_csrs(const struct target *target)
|
||||||
struct reg * const reg = get_reg_cache_entry(target, regno);
|
struct reg * const reg = get_reg_cache_entry(target, regno);
|
||||||
const unsigned int csr_number = regno - GDB_REGNO_CSR0;
|
const unsigned int csr_number = regno - GDB_REGNO_CSR0;
|
||||||
if (!reg->exist) {
|
if (!reg->exist) {
|
||||||
LOG_TARGET_WARNING(target,
|
LOG_TARGET_DEBUG(target,
|
||||||
"Not hiding CSR %d: register does not exist.",
|
"Not hiding CSR %d: register does not exist.",
|
||||||
csr_number);
|
csr_number);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue