target/riscv: re-apply patch do stop avoid warnings when a non-existent CSR is hidden
the original fix was introduced inb201a5db23
but was lost in3883b03a
This commit is contained in:
parent
e07d70e52c
commit
e56dc61697
|
@ -730,7 +730,7 @@ int riscv_reg_impl_expose_csrs(const struct target *target)
|
||||||
struct reg * const reg = riscv_reg_impl_cache_entry(target, regno);
|
struct reg * const reg = riscv_reg_impl_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 exposing CSR %d: register already exists.",
|
"Not exposing CSR %d: register already exists.",
|
||||||
csr_number);
|
csr_number);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue