Remove some debug printfs.
Change-Id: I09989d4c0e102889ecb0eedbd3f4138f8b7bdb8c
This commit is contained in:
parent
56ad0e5b30
commit
c7cddd2b5c
|
@ -1247,7 +1247,6 @@ void riscv_info_init(struct target *target, riscv_info_t *r)
|
||||||
memset(r, 0, sizeof(*r));
|
memset(r, 0, sizeof(*r));
|
||||||
r->dtm_version = 1;
|
r->dtm_version = 1;
|
||||||
r->registers_initialized = false;
|
r->registers_initialized = false;
|
||||||
LOG_DEBUG(">>> current_hartid=%d", target->coreid);
|
|
||||||
r->current_hartid = target->coreid;
|
r->current_hartid = target->coreid;
|
||||||
|
|
||||||
memset(r->trigger_unique_id, 0xff, sizeof(r->trigger_unique_id));
|
memset(r->trigger_unique_id, 0xff, sizeof(r->trigger_unique_id));
|
||||||
|
@ -1360,7 +1359,6 @@ int riscv_xlen(const struct target *target)
|
||||||
int riscv_xlen_of_hart(const struct target *target, int hartid)
|
int riscv_xlen_of_hart(const struct target *target, int hartid)
|
||||||
{
|
{
|
||||||
RISCV_INFO(r);
|
RISCV_INFO(r);
|
||||||
LOG_DEBUG(">>> xlen[%d] = %d", hartid, r->xlen[hartid]);
|
|
||||||
assert(r->xlen[hartid] != -1);
|
assert(r->xlen[hartid] != -1);
|
||||||
return r->xlen[hartid];
|
return r->xlen[hartid];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue