Merge pull request #1118 from aap-sc/aap-sc/fixup_hidecsr_warnings

target/riscv: re-apply patch do stop avoid warnings when a non-existent CSR is hidden
This commit is contained in:
Anatoly Parshintsev 2024-08-30 01:15:36 +03:00 committed by GitHub
commit 8ea44aa381
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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);
const unsigned int csr_number = regno - GDB_REGNO_CSR0;
if (reg->exist) {
LOG_TARGET_WARNING(target,
LOG_TARGET_DEBUG(target,
"Not exposing CSR %d: register already exists.",
csr_number);
continue;